generated from raulanatol/template-node-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
49 lines (36 loc) Β· 706 Bytes
/
Makefile
File metadata and controls
49 lines (36 loc) Β· 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
.DEFAULT_GOAL := check
init:
@echo "Initialising the project"
@npm install
start:
@echo "πββοΈ Starting project"
@npm run dev
check: --pre_check test build
@echo "β
"
docs:
@doctoc README.md
@echo "π Documentation ready!"
clean:
@echo "π Cleaning..."
@npm run clean
clean_all:
@echo "𧨠Clean all"
@npm run cleanup
test:
@echo "Testing..."
@npm run test-ci
build:
@echo "π©βπ Building..."
@npm run build
release_patch: release
release_minor: check
@.scripts/finish-release minor
release_major: check
@.scripts/finish-release major
release: check
@.scripts/finish-release patch
--pre_check:
@npm run clean
@npm install
@npm run lint
@npm run build