Skip to content

Commit 6966587

Browse files
committed
clean
1 parent 8ec7870 commit 6966587

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

Makefile

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,33 @@
33
# GitHb: https://github.com/wechaty/wechaty-getting-started
44
# Author: Huan LI <[email protected]> https://github.com/huan
55
#
6+
# Make commands supported:
7+
# install
8+
# bot
9+
# lint
10+
# test
11+
# clean
12+
#
613

714
.PHONY: all
815
all : install bot
916

17+
.PHONY: install
18+
install:
19+
npm install
20+
21+
.PHONY: bot
22+
bot:
23+
npm start
24+
1025
.PHONY: clean
1126
clean:
1227
npm run clean
1328

1429
.PHONY: lint
1530
lint: npm run lint
1631

17-
.PHONY: install
18-
install:
19-
npm install
20-
2132
.PHONY: test
2233
test:
2334
npm test
2435

25-
.PHONY: bot
26-
bot:
27-
npm start

0 commit comments

Comments
 (0)