forked from strapi/strapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nx.json
56 lines (56 loc) · 1.53 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
49
50
51
52
53
54
55
56
{
"namedInputs": {
"default": ["{projectRoot}/**/*"],
"production": [
"default",
"!{projectRoot}/**/*.test.ts",
"!{projectRoot}/**/*.test.js",
"!{projectRoot}/**/*.test.api.js",
"!{projectRoot}/**/__mocks__/**",
"!{projectRoot}/**/__tests__/**",
"!{projectRoot}/**/*.md",
"!{projectRoot}/jest.config.js",
"!{projectRoot}/jest.config.front.js",
"!{projectRoot}/tsconfig.eslint.json",
"!{projectRoot}/.eslintignore",
"!{projectRoot}/.eslintrc.js"
]
},
"cli": {
"packageManager": "yarn"
},
"targetDefaults": {
"build": {
"inputs": ["production", "^production"],
"dependsOn": ["^build"]
},
"build:ts": {
"inputs": ["production", "^production", "{workspaceRoot}/packages/utils/tsconfig/**/*"],
"dependsOn": ["^build:ts"]
},
"test:unit": {
"inputs": ["default", "{workspaceRoot}/jest-preset.unit.js"]
},
"test:front": {
"inputs": ["default", "{workspaceRoot}/jest-preset.front.js"]
},
"lint": {
"inputs": [
"{projectRoot}/**/*.js",
"{projectRoot}/**/*.ts",
"{projectRoot}/.eslintrc.js",
"{projectRoot}/.eslintignore",
"{projectRoot}/tsconfig.eslint.json",
"{workspaceRoot}/packages/utils/eslint-config-custom/**/*"
]
}
},
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": ["build", "build:ts", "lint", "test:unit", "test:front"]
}
}
}
}