chore(build): Use nx run-many instead of lerna run#1738
Conversation
✅ Deploy Preview for cedarjs canceled.
|
Greptile SummaryThis PR migrates the
Confidence Score: 5/5Safe to merge — the change is a straightforward script migration with no functional regression. The only behavioral difference is dropping No files require special attention. Important Files Changed
Reviews (1): Last reviewed commit: "chore(build): Use nx run-many instead of..." | Re-trigger Greptile |
|
| Command | Status | Duration | Result |
|---|---|---|---|
nx run-many -t build:pack --exclude create-ceda... |
✅ Succeeded | 7s | View ↗ |
nx run-many -t build |
✅ Succeeded | 3m 12s | View ↗ |
☁️ Nx Cloud last updated this comment at 2026-05-10 13:56:57 UTC
|
The changes in this PR are now available on npm. Try them out by running Or try it in a new app with |

The "build:watch" script was the only script still using lerna. Update it to also use nx as the other scripts that executes package-level scripts.
Also gets rid of the
tsc --buildpart which was effectively dead code. The first part of the command chain launched watch scripts that never exits. They stay running to watch for changes. So the first part of the command chain never exits, making the second part never execute.