-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmakefile
More file actions
59 lines (45 loc) · 1.2 KB
/
makefile
File metadata and controls
59 lines (45 loc) · 1.2 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
build:
@printf "\033[0;32m>>> Build packages\033[0m\n"
pnpm build
demo:
@printf "\033[0;32m>>> Running demo-app\033[0m\n"
cd apps/demo && make 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
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
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