UNPKG
tooljs-github
Version:
latest (0.0.1)
0.0.1
Tooling to create GitHub repo.
github.com/tooljs/github
tooljs/github
tooljs-github
/
Makefile
35 lines
(25 loc)
•
272 B
Plain Text
View Raw
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
28
29
30
31
32
33
34
35
#
# Build.
#
build: node_modules
#
# Clean.
#
clean:
@-rm -rf node_modules
#
# Test.
#
test: build
@node_modules/.bin/mocha
#
# Phonies.
#
.PHONY
: build
.PHONY
: clean
.PHONY
: test
#
# Target for `node_modules` folder.
#
node_modules: package.json
@npm install