cd packages/notcms-kit
# if first time, you may need to run also:
# pnpm config set prefix ~/.pnpm-global
pnpm link --global
# watch the changes while you code
pnpm watchIn case you want to remove from global
pnpm remove --global notcms-kitMake sure to check before submitting a PR.
pnpm checkThis project uses Changesets for version management and changelog generation.
All pull requests must include a changeset.
-
After making your changes, run:
pnpm changeset
-
Select the packages being changed (use spacebar to select, enter to confirm)
-
Choose the version bump type:
patch- Bug fixes, minor improvementsminor- New features (backwards compatible)major- Breaking changes
-
Write a brief description of your changes (this will appear in the CHANGELOG)
-
Commit the generated changeset file along with your changes:
git add .changeset/ git commit -m "chore: add changeset"
When changes with changesets are merged to main:
- A "Version Packages" PR is automatically created
- This PR updates versions and CHANGELOGs
- When merged, packages are automatically published to npm