Skip to content

Commit

Permalink
chore(deps): ⬆️ update nx monorepo to v18
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed Feb 4, 2024
1 parent 6de27d0 commit 5a0c0f2
Show file tree
Hide file tree
Showing 8 changed files with 1,331 additions and 2,605 deletions.
3 changes: 1 addition & 2 deletions apps/hpb-client/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,8 @@
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/hpb-client/**/*.ts", "apps/hpb-client/**/*.html"]
"lintFilePatterns": ["{projectRoot}/**/*.ts", "{projectRoot}/**/*.html"]
}
},
"test": {
Expand Down
7 changes: 1 addition & 6 deletions libs/pages/landing/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,8 @@
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
"libs/pages/landing/**/*.ts",
"libs/pages/landing/**/*.html",
"libs/pages/landing/package.json"
]
"lintFilePatterns": ["{projectRoot}/**/*.ts", "{projectRoot}/**/*.html", "{projectRoot}/package.json"]
}
}
}
Expand Down
7 changes: 1 addition & 6 deletions libs/pages/not-found/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,8 @@
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
"libs/pages/not-found/**/*.ts",
"libs/pages/not-found/**/*.html",
"libs/pages/not-found/package.json"
]
"lintFilePatterns": ["{projectRoot}/**/*.ts", "{projectRoot}/**/*.html", "{projectRoot}/package.json"]
}
}
}
Expand Down
3 changes: 1 addition & 2 deletions libs/shared/styles/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/shared/styles/**/*.ts", "libs/shared/styles/**/*.html"]
"lintFilePatterns": ["{projectRoot}/**/*.ts", "{projectRoot}/**/*.html"]
}
}
}
Expand Down
3 changes: 1 addition & 2 deletions libs/shared/ui/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/shared/ui/**/*.ts", "libs/shared/ui/**/*.html"]
"lintFilePatterns": ["{projectRoot}/**/*.ts", "{projectRoot}/**/*.html"]
}
}
}
Expand Down
18 changes: 9 additions & 9 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,6 @@
"inputs": ["production", "^production"],
"cache": true
},
"lint": {
"inputs": [
"default",
"{workspaceRoot}/.eslintrc.json",
"{workspaceRoot}/.eslintignore",
"{workspaceRoot}/eslint.config.js"
],
"cache": true
},
"@nx/jest:jest": {
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"],
"cache": true,
Expand All @@ -34,6 +25,15 @@
"codeCoverage": true
}
}
},
"@nx/eslint:lint": {
"inputs": [
"default",
"{workspaceRoot}/.eslintrc.json",
"{workspaceRoot}/.eslintignore",
"{workspaceRoot}/eslint.config.js"
],
"cache": true
}
},
"namedInputs": {
Expand Down
Loading

0 comments on commit 5a0c0f2

Please sign in to comment.