-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathproject.json
More file actions
64 lines (64 loc) · 1.72 KB
/
project.json
File metadata and controls
64 lines (64 loc) · 1.72 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
{
"name": "dialtone-icons",
"targets": {
"build": {
"executor": "nx:run-commands",
"options": {
"cwd": "{projectRoot}",
"commands": [
{
"command": "pnpm exec gulp"
},
{
"command": "nx run-many --target=build --projects=dialtone-icons-vue2,dialtone-icons-vue3 --parallel=2 --output-style=stream"
}
],
"parallel": false
},
"inputs": [
"{projectRoot}/src/**/*",
"{projectRoot}/transformSVGtoVue.cjs",
"{projectRoot}/gulpfile.cjs"
],
"outputs": [
"{projectRoot}/src/icons",
"{projectRoot}/src/illustrations",
"{projectRoot}/dist",
"{projectRoot}/vue2/dist",
"{projectRoot}/vue3/dist"
]
},
"build:android": {
"executor": "nx:run-commands",
"options": {
"cwd": "{projectRoot}",
"command": "nx run dialtone-icons-android:build:android --output-style=stream"
},
"outputs": [
"{projectRoot}/android/src/kotlin/icons",
"{projectRoot}/android/src/res/raw"
]
},
"publish": {
"executor": "nx:run-commands",
"options": {
"command": "pnpm publish --filter ./packages/dialtone-icons"
}
},
"release": {
"executor": "nx:run-commands",
"options": {
"command": "pnpm semantic-release-plus --extends ./packages/dialtone-icons/release-ci.config.cjs && sleep 3",
"parallel": false
}
},
"publish:android-package": {
"dependsOn": ["build:android"],
"executor": "nx:run-commands",
"options": {
"cwd": "{projectRoot}/android",
"command": "./gradlew publishToMavenLocal"
}
}
}
}