bumpp 9.8.0 → 9.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -7,14 +7,13 @@ Forked from [`version-bump-prompt`](https://github.com/JS-DevTools/version-bump-
7
7
  ###### Changes in this fork
8
8
 
9
9
  - Renamed to `bumpp` - so you can use `npx bumpp` directly.
10
- - Ships ESM and CJS bundles.
11
- - Add a new argument `--execute` to execute the command, or execute a function before committing.
12
10
  - Use the current version's `preid` when available.
13
11
  - Confirmation before bumping.
14
12
  - Enable `--commit` `--tag` `--push` by default. (opt-out by `--no-push`, etc.)
15
- - `--sign` to sign the commit and tag.
16
13
  - `-r` or `--recursive` to bump all packages in the monorepo.
14
+ - `--execute` to execute the command, or execute a function before committing.
17
15
  - Conventional Commits by default.
16
+ - Ships ESM and CJS bundles.
18
17
  - Supports config file `bump.config.ts`:
19
18
 
20
19
  ```ts
@@ -23,8 +22,5 @@ import { defineConfig } from 'bumpp'
23
22
 
24
23
  export default defineConfig({
25
24
  // ...options
26
- execute(config) {
27
- // ...`execute` could receive a function here
28
- }
29
25
  })
30
26
  ```