forked from coveo/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnx.json
34 lines (34 loc) · 788 Bytes
/
nx.json
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
{
"extends": "@nrwl/workspace/presets/core.json",
"npmScope": "cli-tools",
"affected": {
"defaultBase": "master"
},
"cli": {
"defaultCollection": "@nrwl/workspace"
},
"targetDependencies": {
"release:phase1": [{"target": "release:phase1", "projects": "dependencies"}]
},
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"outputs": [
"{projectRoot}/lib",
"{projectRoot}/dist",
"{projectRoot}/tsconfig.build.tsbuildinfo"
]
},
"release:phase1": {
"dependsOn": ["^release:phase1"]
}
},
"tasksRunnerOptions": {
"default": {
"runner": "@nrwl/workspace/tasks-runners/default",
"options": {
"cacheableOperations": ["build", "lint", "test", "e2e"]
}
}
}
}