-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjustfile
58 lines (41 loc) · 901 Bytes
/
justfile
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
alias c := check
alias cl := changelog
alias wc := watch-check
alias wf := watch-fix
alias wa := watch-all
alias b := build
alias f := fix
alias fc := fix-check
alias d := dev
alias p := preview
dev:
pnpm dev
build: check
pnpm run build
preview: build
pnpm run preview
changelog:
pnpm run changelog
check-astro:
pnpm run astro check
check-eslint:
pnpm run check:eslint
check-prettier:
pnpm run check:prettier
check-stylelint:
pnpm run check:stylelint
fix-eslint:
pnpm run fix:eslint
fix-prettier:
pnpm run fix:prettier
fix-stylelint:
pnpm run fix:stylelint
fix: fix-eslint fix-stylelint fix-prettier
check: check-astro check-eslint check-stylelint check-prettier
fix-check: fix check
watch-check:
watchexec -e js,css,html,astro,ts just check
watch-fix:
watchexec -e js,css,html,astro,ts just fix
watch-all:
watchexec -e js,css,html,astro,ts just fix-check