feat(nx): update to nx17

This commit is contained in:
thomas
2023-10-24 10:27:18 +02:00
parent 3173522a00
commit b34b846674
66 changed files with 6092 additions and 3695 deletions

30
nx.json
View File

@@ -1,40 +1,30 @@
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"npmScope": "angular-challenges",
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": [
"build",
"lint",
"test",
"e2e",
"component-test"
]
}
}
},
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
"inputs": ["production", "^production"],
"cache": true
},
"test": {
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"]
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"],
"cache": true
},
"e2e": {
"inputs": ["default", "^production"]
"inputs": ["default", "^production"],
"cache": true
},
"lint": {
"inputs": [
"default",
"{workspaceRoot}/.eslintrc.json",
"{workspaceRoot}/tools/eslint-rules/**/*"
]
],
"cache": true
},
"component-test": {
"inputs": ["default", "^production"]
"inputs": ["default", "^production"],
"cache": true
}
},
"namedInputs": {