UNPKG
logline
Version:
latest (1.1.4)
1.1.4
1.1.2
1.1.1
1.1.0
1.0.12
1.0.11
1.0.10
1.0.9
1.0.8
1.0.7
0.0.1
logging the frontend
github.com/latel/logline
latel/logline
logline
/
makefile
22 lines
(13 loc)
•
249 B
Plain Text
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
PATH := node_modules/.bin:
$(PATH)
default: clean configure dev prod test
configure:
npm run configure
dev:
npm run build:dev
prod:
npm run build:prod
test:
npm run test
clean:
@rm -f dist/*
.PHONY
: default configure dev prod test clean