-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
59 lines (44 loc) · 723 Bytes
/
Makefile
File metadata and controls
59 lines (44 loc) · 723 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
50
51
52
53
54
55
56
57
58
.PHONY: install
install:
npm install
.PHONY: setup_husky
setup_husky:
npm run prepare
.PHONY: build
build:
npm run build
.PHONY: clean
clean:
npm run clean
.PHONY: deploy_circuit
deploy_circuit:
npm run deploy:circuit
.PHONY: test
test:
npm run test
.PHONY: test_coverage
test_coverage:
npm run test:coverage
.PHONY: test_debug
test_debug:
npm run test:debug
.PHONY: test_watch
test_watch:
npm run test:watch
.PHONY: lint
lint:
npm run lint
.PHONY: lint_text
lint_text:
npm run lint:text
.PHONY: format
format:
npm run format
.PHONY: format_check
format_check:
npm run format:check
.PHONY: before_commit
before_commit: test format lint
.PHONY: run_frontend
run_frontend:
npm run start:frontend