bumpp
Version:
Bump version, commit changes, tag, and push to Git
27 lines (20 loc) • 823 B
Markdown
# bumpp
[](https://www.npmjs.com/package/bumpp)
Forked from [`version-bump-prompt`](https://github.com/JS-DevTools/version-bump-prompt)
###### Changes in this fork
- Renamed to `bumpp` - so you can use `npx bumpp` directly.
- Use the current version's `preid` when available.
- Confirmation before bumping.
- Enable `--commit` `--tag` `--push` by default. (opt-out by `--no-push`, etc.)
- `-r` or `--recursive` to bump all packages in the monorepo.
- `--execute` to execute the command, or execute a function before committing.
- Conventional Commits by default.
- Ships ESM and CJS bundles.
- Supports config file `bump.config.ts`:
```ts
// bump.config.ts
import { defineConfig } from 'bumpp'
export default defineConfig({
// ...options
})
```