forked from lerna/lerna
-
Notifications
You must be signed in to change notification settings - Fork 3
/
nx.json
38 lines (38 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
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"npmScope": "lerna",
"tasksRunnerOptions": {
"default": {
"runner": "@nrwl/nx-cloud",
"options": {
"accessToken": "MGQ4ZjkyMWYtYTVhNi00ZWQ4LWE0OTctNTkxM2U0ZDUzYWQ1fHJlYWQ=",
"cacheableOperations": ["build", "lint", "e2e", "test", "run-e2e-tests-process", "run-e2e-tests"]
}
}
},
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"sharedGlobals": [],
"production": [
"default",
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
"!{projectRoot}/tsconfig.spec.json",
"!{projectRoot}/jest.config.[jt]s"
]
},
"workspaceLayout": {
"libsDir": "libs",
"appsDir": "packages"
},
"targetDefaults": {
"test": {
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"]
},
"build": {
"inputs": ["production", "^production"]
},
"run-e2e-tests": {
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"]
}
}
}