-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnx.json
48 lines (48 loc) · 1.03 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"extends": "nx/presets/npm.json",
"tasksRunnerOptions": {
"default": {
"runner": "@nrwl/nx-cloud",
"options": {
"cacheableOperations": [
"build",
"lint",
"test",
"transpile",
"unit"
],
"cacheDirectory": "./.cache/nx",
"accessToken": "Mjc2ZmI1ZDgtOTIyOC00Nzc1LWJkMWUtN2FmOGY5Yzg5ZTk3fHJlYWQtd3JpdGU="
}
}
},
"namedInputs": {
"source": ["{projectRoot}/lib/*"]
},
"targetDefaults": {
"build": {
"dependsOn": ["transpile"]
},
"dev": {
"dependsOn": ["transpile"]
},
"transpile": {
"dependsOn": ["^transpile"],
"outputs": [
"{projectRoot}/dist",
"{projectRoot}/src/reference/pages",
"{projectRoot}/src/reference/routes"
]
},
"lint": {
"dependsOn": ["transpile"]
},
"test": {
"dependsOn": ["^transpile"],
"inputs": [{ "runtime": "node -v" }, "source", "^source"]
}
},
"affected": {
"defaultBase": "master"
}
}