UNPKG

471 BPlain TextView Raw
1build:
2 node_modules/coffee-script/bin/coffee -j lib/fs-util.js -c src/*.coffee
3
4test.clean:
5 rm -rf tests/tmp-* tests/a
6
7test: test.clean build
8 node_modules/mocha/bin/mocha tests/* \
9 --compilers coffee:coffee-script \
10 --require should --reporter spec
11
12publish:
13 git tag $(v)
14 git push origin $(v)
15 git push origin master
16 npm publish
17
18re-publish:
19 git tag -d $(v)
20 git tag $(v)
21 git push origin :$(v)
22 git push origin $(v)
23 git push origin master -f
24 npm publish -f
\No newline at end of file