Simon Egersand
2017-11-04 c30b4ddcab242ec4be131a9586a71963e7b42b4d
Add Makefile
1 files added
13 ■■■■■ changed files
Makefile 13 ●●●●● patch | view | raw | blame | history
Makefile
New file
@@ -0,0 +1,13 @@
.PHONY: all clean install test
clean:
    rm -rf node_modules
install:
    npm install
test:
    npm run test
test-watch:
    npm run test:watch