Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/mcp-adapter/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"executor": "nx:run-commands",
"outputs": ["{projectRoot}/dist"],
"options": {
"command": "tsc --build packages/mcp-adapter/tsconfig.json"
"command": "cd packages/mcp-adapter && npm run build"
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why the CD ? shouldn't need to

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we use nx:run-commands from the root, so npm run build will execute the root build script. In all other packages this is the same, maybe was missed here

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yea, It should have a sourceRoot option which should opt-in this behaviour - but if all the wokrspace is using this convention lets proceed.

}
},
"test": {
Expand Down
Loading