Files
30-seconds-of-code/node_modules/stack-trace/Makefile
2019-08-20 15:52:05 +02:00

12 lines
108 B
Makefile

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