forked from moul/node-gitlab
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
Latest commit
27 lines (20 loc) · 421 Bytes
/
Copy pathMakefile
File metadata and controls
27 lines (20 loc) · 421 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
PACKAGE_VERSION = $(shell node -e 'console.log(require("./package.json").version);')
develop:
npm install
npm install -g coffee-script
build:
cake build
watch:
cake watch
doc:
npm install docco
./node_modules/docco/bin/docco $(shell find src -name "*.coffee")
tag:
git commit -am "v$(PACKAGE_VERSION)"
git tag v$(PACKAGE_VERSION)
git push
git push --tags
test: build
npm test
release: test
npm publish