From cfd35a1b4fa9164495e3e06b9f77353efba48ed8 Mon Sep 17 00:00:00 2001 From: Anthony Fu Date: Mon, 28 Oct 2024 23:48:32 +0900 Subject: [PATCH] docs: update --- README.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 918ed17..d98910b 100644 --- a/README.md +++ b/README.md @@ -7,14 +7,13 @@ Forked from [`version-bump-prompt`](https://github.com/JS-DevTools/version-bump- ###### Changes in this fork - Renamed to `bumpp` - so you can use `npx bumpp` directly. -- Ships ESM and CJS bundles. -- Add a new argument `--execute` to execute the command, or execute a function before committing. - Use the current version's `preid` when available. - Confirmation before bumping. - Enable `--commit` `--tag` `--push` by default. (opt-out by `--no-push`, etc.) -- `--sign` to sign the commit and tag. - `-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 @@ -23,8 +22,5 @@ import { defineConfig } from 'bumpp' export default defineConfig({ // ...options - execute(config) { - // ...`execute` could receive a function here - } }) ```