General
PromptBeginner5 minmarkdown
<h1 align="center">
<a href="https://prompts.chat">
5
Create a changeset using the CLI. The CLI will automatically detect changed packages and create the changeset file.
Sign in to like and favorite skills
Create a changeset using the CLI. The CLI will automatically detect changed packages and create the changeset file.
pnpm changeset -s -m "your changeset message" [--major pkg1] [--minor pkg2] [--patch pkg3]
Arguments:
-s or --skipPrompt - Run non-interactively (required for automation)-m "message" or --message "message" - The changeset message (required)--major @scope/pkg - Packages that should have a major version bump--minor @scope/pkg - Packages that should have a minor version bump--patch @scope/pkg - Packages that should have a patch version bump (default for detected changes)Notes:
patch bumps--major or --minor for specific packages--minor @mastra/core --minor @mastra/clipatch - Bugfixes with backward-compatible changesminor - New features with backward-compatible changesmajor - Breaking changes that are not backward-compatible