-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathproject.json
More file actions
33 lines (33 loc) · 863 Bytes
/
project.json
File metadata and controls
33 lines (33 loc) · 863 Bytes
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
{
"name": "dialtone-cli",
"targets": {
"build": {
"executor": "nx:run-commands",
"dependsOn": ["dialtone-query-core:build"],
"inputs": [
"{projectRoot}/src/**/*",
"{projectRoot}/package.json",
"{projectRoot}/tsconfig.json",
"{projectRoot}/rollup.config.js"
],
"outputs": ["{projectRoot}/build"],
"options": {
"cwd": "{projectRoot}",
"command": "pnpm exec rollup -c"
}
},
"publish": {
"executor": "nx:run-commands",
"options": {
"command": "pnpm publish --filter ./packages/dialtone-cli"
}
},
"release": {
"executor": "nx:run-commands",
"options": {
"command": "pnpm semantic-release-plus --extends ./packages/dialtone-cli/release-ci.config.cjs && sleep 3",
"parallel": false
}
}
}
}