UNPKG

216 BPlain TextView Raw
1PATH := ./node_modules/.bin:${PATH}
2
3.PHONY : init clean build test dist
4
5init:
6 npm install
7
8clean:
9 rm -rf tasks/
10
11build:
12 coffee -b -o tasks/ -c src/
13
14dist: clean init build
15
16publish: dist
17 npm publish
\No newline at end of file