Skip to content

Commit c30b4dd

Browse files
committed
Add Makefile
1 parent 689227e commit c30b4dd

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Makefile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.PHONY: all clean install test
2+
3+
clean:
4+
rm -rf node_modules
5+
6+
install:
7+
npm install
8+
9+
test:
10+
npm run test
11+
12+
test-watch:
13+
npm run test:watch

0 commit comments

Comments
 (0)