12 lines
108 B
Makefile
Raw Normal View History

2025-06-04 09:42:48 +08:00
SHELL := /bin/bash
test:
@./test/run.js
release:
git push
git push --tags
npm publish .
.PHONY: test