|
231 | 231 | } |
232 | 232 | }, |
233 | 233 | "unit-test": { |
| 234 | + "cache": true, |
234 | 235 | "outputs": [ |
235 | 236 | "{workspaceRoot}/coverage/{projectName}/unit-tests/lcov.info" |
236 | 237 | ], |
|
243 | 244 | } |
244 | 245 | }, |
245 | 246 | "int-test": { |
| 247 | + "cache": true, |
246 | 248 | "outputs": ["{workspaceRoot}/coverage/{projectName}/int-tests/lcov.info"], |
247 | 249 | "executor": "@nx/vite:test", |
248 | 250 | "options": { |
|
258 | 260 | "cache": true |
259 | 261 | }, |
260 | 262 | "lint": { |
261 | | - "inputs": ["lint-eslint-inputs"], |
262 | | - "executor": "@nx/linter:eslint", |
| 263 | + "inputs": ["default", "{workspaceRoot}/eslint.config.?(c)js"], |
| 264 | + "executor": "@nx/eslint:lint", |
263 | 265 | "outputs": ["{options.outputFile}"], |
264 | 266 | "cache": true, |
265 | 267 | "options": { |
| 268 | + "errorOnUnmatchedPattern": false, |
| 269 | + "maxWarnings": 0, |
| 270 | + "lintFilePatterns": [ |
| 271 | + "{projectRoot}/**/*.ts", |
| 272 | + "{projectRoot}/package.json" |
| 273 | + ] |
| 274 | + } |
| 275 | + }, |
| 276 | + "lint-report": { |
| 277 | + "inputs": ["default", "{workspaceRoot}/eslint.config.?(c)js"], |
| 278 | + "outputs": ["{projectRoot}/.eslint/eslint-report*.json"], |
| 279 | + "cache": true, |
| 280 | + "executor": "@nx/linter:eslint", |
| 281 | + "options": { |
| 282 | + "errorOnUnmatchedPattern": false, |
266 | 283 | "maxWarnings": 0, |
| 284 | + "format": "json", |
| 285 | + "outputFile": "{projectRoot}/.eslint/eslint-report.json", |
267 | 286 | "lintFilePatterns": [ |
268 | 287 | "{projectRoot}/**/*.ts", |
269 | 288 | "{projectRoot}/package.json" |
|
499 | 518 | }, |
500 | 519 | "version": { |
501 | 520 | "conventionalCommits": true, |
502 | | - "generatorOptions": { |
| 521 | + "preserveLocalDependencyProtocols": false, |
| 522 | + "versionActionsOptions": { |
503 | 523 | "skipLockFileUpdate": true |
504 | 524 | } |
505 | 525 | }, |
|
0 commit comments