Files
2023-07-12 16:31:19 +01:00

12 lines
108 B
Makefile
Executable File

SHELL := /bin/bash
test:
@./test/run.js
release:
git push
git push --tags
npm publish .
.PHONY: test