We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ec7870 commit 6966587Copy full SHA for 6966587
Makefile
@@ -3,25 +3,33 @@
3
# GitHb: https://github.com/wechaty/wechaty-getting-started
4
# Author: Huan LI <[email protected]> https://github.com/huan
5
#
6
+# Make commands supported:
7
+# install
8
+# bot
9
+# lint
10
+# test
11
+# clean
12
+#
13
14
.PHONY: all
15
all : install bot
16
17
+.PHONY: install
18
+install:
19
+ npm install
20
+
21
+.PHONY: bot
22
+bot:
23
+ npm start
24
25
.PHONY: clean
26
clean:
27
npm run clean
28
29
.PHONY: lint
30
lint: npm run lint
31
-.PHONY: install
-install:
- npm install
-
32
.PHONY: test
33
test:
34
npm test
35
-.PHONY: bot
-bot:
- npm start
0 commit comments