Skip to content

Commit

Permalink
chore: fix projects config [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
getlarge committed Sep 13, 2024
1 parent 85ad41a commit ffbdade
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
8 changes: 1 addition & 7 deletions packages/cluster/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,7 @@
}
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"dependsOn": ["build"],
"options": {
"jestConfig": "packages/cluster/jest.config.ts",
"codeCoverage": true
}
"dependsOn": ["build"]
}
}
}
14 changes: 13 additions & 1 deletion packages/eslint-rules/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,17 @@
"projectType": "library",
"tags": [],
"// targets": "to see all targets run: nx show project eslint-rules --web",
"targets": {}
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/eslint-rules",
"tsConfig": "packages/eslint-rules/tsconfig.lib.json",
"packageJson": "packages/eslint-rules/package.json",
"main": "packages/eslint-rules/src/index.ts",
"assets": ["packages/eslint-rules/*.md"]
}
}
}
}

0 comments on commit ffbdade

Please sign in to comment.