Skip to content

Commit

Permalink
chore: fix instrumentation build to output to correct spot
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcdo29 committed Jul 23, 2024
1 parent 25a0a7c commit 1205e41
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions packages/instrumentation/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,16 @@
"tags": [],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"executor": "@nrwl/js:tsc",
"options": {
"outputPath": "dist/packages/instrumentation",
"main": "packages/instrumentation/src/index.ts",
"outputPath": "dist/instrumentation",
"main": "packages/instrumentation/src/main.ts",
"tsConfig": "packages/instrumentation/tsconfig.build.json",
"assets": ["packages/instrumentation/*.md"]
"clean": true,
"packageJson": "packages/instrumentation/package.json",
"assets": ["packages/instrumentation/*.md"],
"buildableProjectDepsInPackageJsonType": "dependencies",
"updateBuildableProjectDepsInPackageJson": true
}
},
"test": {
Expand Down

0 comments on commit 1205e41

Please sign in to comment.