Local Package Development
Use Clipboard's internal CLI (@clipboard-health/cli) to test package changes across repositories without publishing. The cbh local-package command wraps yalc to simplify linking packages between sibling repositories.
Prerequisites
See the CLI README for setup instructions.
Commands
Link packages
From the consuming repository, link packages from sibling repos:
bash
cbh local-package link --packages <package-names...>
Example:
bash
cbh local-package link --packages ui-theme ui-components
This will:
- •Find the package in sibling
packages/*directories - •Build the package with nx
- •Push the built package to yalc
- •Update your
package.jsonto use the yalc version
Unlink packages
After testing, restore the published package versions:
bash
cbh local-package unlink --packages <package-names...>
Example:
bash
cbh local-package unlink --packages ui-theme ui-components
Workflow Example
To test changes to ui-theme in cbh-mobile-app:
- •
Make changes to
ui-themeincbh-core - •
From
cbh-mobile-approot, run:bashcbh local-package link --packages ui-theme
- •
Test your changes in
cbh-mobile-app - •
When done, unlink:
bashcbh local-package unlink --packages ui-theme
Troubleshooting
- •Package not found: Ensure the package exists in a sibling repo's
packages/directory - •Build fails: The package must have a valid nx build target
- •Changes not reflected: Run
npm installafter linking to pull in the yalc version