# bumpp **Repository Path**: mirrors_TrySound/bumpp ## Basic Information - **Project Name**: bumpp - **Description**: Interactive CLI that bumps your version numbers and more - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-12-22 - **Last Updated**: 2025-09-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # bumpp [![NPM version](https://img.shields.io/npm/v/bumpp?color=a1b858&label=)](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 }) ```