You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@find test -name '*_test.coffee'| xargs -n 1 -t coffee
3
+
4
+
dev: js
5
+
@coffee -wc --bare -o lib src/
6
+
7
+
VERSION = $(shell coffee src/npm-version.coffee)
8
+
release: npm-dep js
9
+
git commit --allow-empty -a -m "release $(VERSION)"
10
+
git tag v$(VERSION)
11
+
git push origin master
12
+
git push origin v$(VERSION)
13
+
@make remove-js
14
+
15
+
publish: npm-dep js
16
+
npm publish
17
+
18
+
install: npm-dep js
19
+
npm install
20
+
@make remove-js
21
+
22
+
js: coffee-dep
23
+
@coffee -c --bare -o lib src/
24
+
25
+
remove-js:
26
+
@rm -fr lib/
27
+
28
+
npm-dep:
29
+
@test `which npm`||echo'You need npm to do npm install... makes sense?'
30
+
31
+
coffee-dep:
32
+
@test `which coffee`||echo'You need to have CoffeeScript in your PATH.\nPlease install it using `brew install coffee-script` or `npm install coffee-script`.'
0 commit comments