-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
73 lines (56 loc) · 1.7 KB
/
Makefile
File metadata and controls
73 lines (56 loc) · 1.7 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
#==============================
# {libs} nomimono-theme
#==============================
build-nomimono-theme:
npx nx run nomimono-theme:build
patch-nomimono-theme:
npx nx run nomimono-theme:version \
--releaseAs=minor \
--push=true \
--skipRootChangelog=true \
--skipProjectChangelog=true \
publish-nomimono-theme:
npx nx run nomimono-theme:publish
zpatch-nomimono-theme:
make build-nomimono-theme && make patch-nomimono-theme && make publish-nomimono-theme
#==============================
# {libs} nomimono-css
#==============================
build-nomimono-css:
npx nx run nomimono-css:build
patch-nomimono-css:
npx nx run nomimono-css:version \
--releaseAs=minor \
--push=true \
--skipRootChangelog=true \
--skipProjectChangelog=true \
publish-nomimono-css:
npx nx run nomimono-css:publish
prepare-nomimono-css:
npx nx run nomimono-css:prepare
zpatch-nomimono-css:
make build-nomimono-css && make patch-nomimono-css && make prepare-nomimono-css && make publish-nomimono-css
#==============================
# {libs} nomimono-svelte
#==============================
dev-nomimono-svelte:
npx nx run nomimono-svelte:dev
build-nomimono-svelte:
npx nx run nomimono-svelte:build
patch-nomimono-svelte:
npx nx run nomimono-svelte:version \
--releaseAs=patch \
--push=true \
--skipRootChangelog=true \
--skipProjectChangelog=true \
publish-nomimono-svelte:
npx nx run nomimono-svelte:publish
zpatch-nomimono-svelte:
make build-nomimono-svelte && make patch-nomimono-svelte && make publish-nomimono-svelte
#==============================
# {app} nomimono-css website
#==============================
dev-website:
npx nx run nomimono--website:dev
build-website:
npx nx run nomimono--website:build