Daan De Deckere
2018-02-12 d40f6d89bf9084e5d03df1aeea8bffd67662f0c0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.PHONY: all clean dev install snapshot test test-watch
 
clean:
    rm -rf node_modules
 
dev:
    npm run dev
 
install:
    npm install
 
snapshot:
    npm run test:snapshot:update
 
test:
    npm run test
 
test-watch:
    npm run test:watch