Skip to content

Commit

Permalink
build(project): update Nx to 17.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
julianpoemp committed Nov 24, 2023
1 parent ead3696 commit add338c
Show file tree
Hide file tree
Showing 14 changed files with 2,045 additions and 1,263 deletions.
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
/dist
/coverage
.angular

/.nx/cache
2 changes: 1 addition & 1 deletion apps/octra/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
}
},
"lint": {
"executor": "@nx/linter:eslint",
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/octra/**/*.ts", "apps/octra/**/*.html"]
Expand Down
2 changes: 1 addition & 1 deletion apps/web-components/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
}
},
"lint": {
"executor": "@nx/linter:eslint",
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
Expand Down
2 changes: 1 addition & 1 deletion libs/annotation/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}
},
"lint": {
"executor": "@nx/linter:eslint",
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["annotation/**/*.ts", "annotation/package.json"]
Expand Down
2 changes: 1 addition & 1 deletion libs/assets/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}
},
"lint": {
"executor": "@nx/linter:eslint",
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["assets/**/*.ts", "assets/package.json"]
Expand Down
2 changes: 1 addition & 1 deletion libs/json-sets/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}
},
"lint": {
"executor": "@nx/linter:eslint",
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["json-sets/**/*.ts", "json-sets/package.json"]
Expand Down
2 changes: 1 addition & 1 deletion libs/media/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
},
"lint": {
"executor": "@nx/linter:eslint",
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["media/**/*.ts", "media/package.json"]
Expand Down
2 changes: 1 addition & 1 deletion libs/ngx-components/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"defaultConfiguration": "production"
},
"lint": {
"executor": "@nx/linter:eslint",
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
Expand Down
2 changes: 1 addition & 1 deletion libs/ngx-utilities/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"defaultConfiguration": "production"
},
"lint": {
"executor": "@nx/linter:eslint",
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
Expand Down
2 changes: 1 addition & 1 deletion libs/utilities/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}
},
"lint": {
"executor": "@nx/linter:eslint",
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["utilities/**/*.ts", "utilities/package.json"]
Expand Down
2 changes: 1 addition & 1 deletion libs/web-media/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}
},
"lint": {
"executor": "@nx/linter:eslint",
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["web-media/**/*.ts", "web-media/package.json"]
Expand Down
20 changes: 9 additions & 11 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,29 @@
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": ["build", "lint", "test", "e2e"]
}
}
},
"workspaceLayout": {
"projectNameAndRootFormat": "as-provided"
},
"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
},
"lint": {
"inputs": [
"default",
"{workspaceRoot}/.eslintrc.json",
"{workspaceRoot}/.eslintignore",
"{workspaceRoot}/eslint.config.js"
]
],
"cache": true
},
"e2e": {
"cache": true
}
},
"namedInputs": {
Expand Down
Loading

0 comments on commit add338c

Please sign in to comment.