summaryrefslogtreecommitdiff
path: root/node_modules/stack-trace/Makefile
blob: a7ce31d3f4b3754f44d038df2d93fe2b6f294bee (plain)
1
2
3
4
5
6
7
8
9
10
11
SHELL := /bin/bash

test:
	@./test/run.js

release:
	git push
	git push --tags
	npm publish .

.PHONY: test