test
Run pnpm run release to create the next git tag based on the highest existing semantic version tag in the repository.
- Default is patch bump (
pnpm run release) —0.3.5->0.3.6 - Minor bump (
pnpm run release -- --minor) —0.3.5->0.4.0 - Major bump (
pnpm run release -- --major) —0.3.5->1.0.0
You can also pass --patch explicitly. Use only one of --major, --minor, or --patch.
Shortcut scripts:
pnpm run release:patchpnpm run release:minorpnpm run release:major