bumpp 8.2.1 → 9.1.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 +10 -0
- package/dist/chunk-L3LY4KGC.mjs +1288 -0
- package/dist/cli/index.js +658 -1679
- package/dist/cli/index.mjs +28 -32
- package/dist/index.d.ts +12 -2
- package/dist/index.js +648 -1647
- package/dist/index.mjs +7 -11
- package/package.json +22 -21
- package/dist/chunk-DW6HTJ47.mjs +0 -2281
package/README.md
CHANGED
|
@@ -12,4 +12,14 @@ Forked from [`version-bump-prompt`](https://github.com/JS-DevTools/version-bump-
|
|
|
12
12
|
- Use current version's `preid` when avaliable.
|
|
13
13
|
- Confirmation before bumping.
|
|
14
14
|
- Enable `--commit` `--tag` `--push` by default. (opt-out by `--no-push`, etc.)
|
|
15
|
+
- `-r` or `--recursive` to bump all packages in the monorepo.
|
|
15
16
|
- Conventional Commits by default.
|
|
17
|
+
- Supports config file `bumpp.config.ts`:
|
|
18
|
+
|
|
19
|
+
```ts
|
|
20
|
+
import { defineConfig } from 'bumpp'
|
|
21
|
+
|
|
22
|
+
export default defineConfig({
|
|
23
|
+
// ...options
|
|
24
|
+
})
|
|
25
|
+
```
|