UNPKG
tooljs-template
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Tool template engine plugin
github.com/tooljs/template
tooljs/template
tooljs-template
/
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