bumpp 7.1.0 → 8.0.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
@@ -6,9 +6,13 @@ Forked from [`version-bump-prompt`](https://github.com/JS-DevTools/version-bump-
6
6
 
7
7
  ###### Changes in this fork
8
8
 
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 before committing
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 before committing.
12
+ - Use current version's `preid` when avaliable.
13
+ - Confirmation before bumping.
14
+ - Enable `--commit` `--tag` `--push` by default. (opt-out by `--no-push`, etc.)
15
+ - Conventional Commits by default.
12
16
 
13
17
  <details>
14
18
  <summary>Original README</summary>
@@ -25,10 +29,6 @@ Forked from [`version-bump-prompt`](https://github.com/JS-DevTools/version-bump-
25
29
  [![License](https://img.shields.io/npm/l/@jsdevtools/version-bump-prompt.svg)](LICENSE)
26
30
  [![Buy us a tree](https://img.shields.io/badge/Treeware-%F0%9F%8C%B3-lightgreen)](https://plant.treeware.earth/JS-DevTools/version-bump-prompt)
27
31
 
28
- ![Screenshot](https://jstools.dev/version-bump-prompt/img/screenshot.gif)
29
-
30
-
31
-
32
32
  ### Automate your release process with a single command that can:
33
33
 
34
34
  - Prompt for the type of version bump
package/bin/bumpp.js CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env node
2
- "use strict";
3
- const { main } = require("../dist/cli");
4
- main(process.argv.slice(2));
2
+ 'use strict'
3
+ const { main } = require('../dist/cli')
4
+ main(process.argv.slice(2))