-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmakefile
57 lines (43 loc) · 1.08 KB
/
makefile
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
build:
@printf "\033[0;32m>>> Build packages\033[0m\n"
pnpm build
dev: run
install:
@printf "\033[0;32m>>> Installing dependencies\033[0m\n"
pnpm -r install
lint:
@printf "\033[0;32m>>> Lint code\033[0m\n"
pnpm lint
lint.fix:
@printf "\033[0;32m>>> Lint code\033[0m\n"
pnpm lint:fix
outdated:
@printf "\033[0;32m>>> Check for outdated dependencies\033[0m\n"
pnpm -r outdated
publish:
@printf "\033[0;32m>>> Publish packages033[0m\n"
shipjs trigger
release:
@printf "\033[0;32m>>> Prepare packages for release\033[0m\n"
shipjs prepare
run:
@printf "\033[0;32m>>> Run demo app\033[0m\n"
pnpm dev
sort-package:
@printf "\033[0;32m>>> Format package.json\033[0m\n"
pnpm sort-package
test:
@printf "\033[0;32m>>> Running tests\033[0m\n"
pnpm test
test.ci:
@printf "\033[0;32m>>> Running tests\033[0m\n"
pnpm test:ci
test.integration:
@printf "\033[0;32m>>> Running integration tests\033[0m\n"
pnpm test:integration
test.unit:
@printf "\033[0;32m>>> Running unit tests\033[0m\n"
pnpm test:unit
typecheck:
@printf "\033[0;32m>>> Running Type check\033[0m\n"
pnpm typecheck