Skip to content

Commit

Permalink
Explicit dependencies on target overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobLey committed Jul 14, 2024
1 parent d05f116 commit 5b63981
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion apps/barrelify/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"parallel": true,
"color": true,
"cwd": "{projectRoot}"
}
},
"dependsOn": ["test:reset"]
},
"coverage-report": {},
"analyze:_": {},
Expand Down
9 changes: 6 additions & 3 deletions leyman/eslint-config/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
"targets": {
"biome": {},
"update-ts-references": {
"executor": "npm-nx-update-ts-references:update-ts-references"
"executor": "npm-nx-update-ts-references:update-ts-references",
"dependsOn": ["build:_"]
},
"tsc": {
"executor": "npm-nx-tsc:build",
"options": { "tsConfig": "{projectRoot}/tsconfig.json" }
"options": { "tsConfig": "{projectRoot}/tsconfig.json" },
"dependsOn": ["build:pre"]
},
"coverage-reset": {},
"mocha-unit-test": {},
Expand All @@ -21,7 +23,8 @@
"parallel": true,
"color": true,
"cwd": "{projectRoot}"
}
},
"dependsOn": ["mocha-unit-test", "test:reset"]
},
"coverage-report": {},
"analyze:_": {},
Expand Down

0 comments on commit 5b63981

Please sign in to comment.