版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425
  1. # bumpp
  2. [![NPM version](https://img.shields.io/npm/v/bumpp?color=a1b858&label=)](https://www.npmjs.com/package/bumpp)
  3. Forked from [`version-bump-prompt`](https://github.com/JS-DevTools/version-bump-prompt)
  4. ###### Changes in this fork
  5. - Renamed to `bumpp` - so you can use `npx bumpp` directly.
  6. - Ships ESM and CJS bundles.
  7. - Add a new argument `--execute` to execute the command before committing.
  8. - Use current version's `preid` when avaliable.
  9. - Confirmation before bumping.
  10. - Enable `--commit` `--tag` `--push` by default. (opt-out by `--no-push`, etc.)
  11. - `-r` or `--recursive` to bump all packages in the monorepo.
  12. - Conventional Commits by default.
  13. - Supports config file `bumpp.config.ts`:
  14. ```ts
  15. import { defineConfig } from 'bumpp'
  16. export default defineConfig({
  17. // ...options
  18. })
  19. ```