-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmakefile
More file actions
75 lines (56 loc) · 1.44 KB
/
makefile
File metadata and controls
75 lines (56 loc) · 1.44 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
build:
@printf "\033[0;32m>>> Build packages\033[0m\n"
pnpm build
demo: run
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"
npx shipjs trigger
release:
@printf "\033[0;32m>>> Prepare packages for release033[0m\n"
npx shipjs prepare
run:
@printf "\033[0;32m>>> Run demo app\033[0m\n"
pnpm dev
snapshot-update:
@printf "\033[0;32m>>> Update snapshot files\033[0m\n"
pnpm -r run snapshot:update
sort-package:
@printf "\033[0;32m>>> Format package.json\033[0m\n"
pnpm sort-package
stylelint:
@printf "\033[0;32m>>> Lint style\033[0m\n"
pnpm stylelint
stylelint.fix:
@printf "\033[0;32m>>>Fix lint style\033[0m\n"
pnpm stylelint:fix
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
test.watch:
@printf "\033[0;32m>>> Watch running tests\033[0m\n"
pnpm test:watch
typecheck:
@printf "\033[0;32m>>> Running Type check\033[0m\n"
pnpm typecheck