forked from opencrvs/opencrvs-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnx.json
More file actions
49 lines (49 loc) · 1.2 KB
/
Copy pathnx.json
File metadata and controls
49 lines (49 loc) · 1.2 KB
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
49
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"defaultBase": "origin/develop",
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"production": [
"default",
"!{projectRoot}/**/*.test.ts",
"!{projectRoot}/**/*.test.tsx",
"!{projectRoot}/src/tests/**",
"!{projectRoot}/**/__mocks__/**",
"!{projectRoot}/**/__snapshots__/**"
],
"sharedGlobals": [
"{workspaceRoot}/pnpm-lock.yaml",
"{workspaceRoot}/pnpm-workspace.yaml",
"{workspaceRoot}/patches/**"
]
},
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"cache": true,
"inputs": ["production", "^production"],
"outputs": [
"{projectRoot}/build",
"{projectRoot}/lib",
"{projectRoot}/dist"
]
},
"build:types": {
"dependsOn": ["^build"],
"cache": true,
"inputs": ["production", "^production"],
"outputs": ["{projectRoot}/build/types"]
},
"test:compilation": {
"dependsOn": ["^build"],
"cache": true,
"inputs": ["default", "^production"]
},
"test": {
"dependsOn": ["^build"]
},
"lint": {
"dependsOn": ["^build"]
}
}
}