-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathworkspace.json
More file actions
31 lines (31 loc) · 820 Bytes
/
workspace.json
File metadata and controls
31 lines (31 loc) · 820 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
{
"$schema": "./node_modules/nx/schemas/workspace-schema.json",
"version": 2,
"projects": {
"release": {
"targets": {
"publish": {
"executor": "@nrwl/workspace:run-commands",
"options": {
"command": "node tools/scripts/publish.mjs {args.bump}"
},
"dependsOn": [
{
"projects": "dependencies",
"target": "build"
}
]
}
},
"root": ".",
"implicitDependencies": [
"logger-api", "logger-console", "logger-web"
]
},
"logger-api": "packages/logger-api",
"logger-console": "packages/logger-console",
"logger-demo": "packages/logger-demo",
"logger-demo-e2e": "packages/logger-demo-e2e",
"logger-web": "packages/logger-web"
}
}