bumpp
bumpp copied to clipboard
Interactive CLI that bumps your version numbers and more
### Description After selecting `as-is` ```shell > npx -y bumpp ? Current version 0.0.1 › major 1.0.0 minor 0.1.0 patch 0.0.2 next 0.0.2 pre-patch 0.0.2-beta.0 pre-minor 0.1.0-beta.0 pre-major 1.0.0-beta.0 ❯...
### Description This PR contains two fixes. The first is that the [document here](https://github.com/antfu/bumpp/blob/bf20fc75105282b5570261c3ab1069ad467b3c37/README.md?plain=1#L17) says that the config name is `bumpp.config.ts`, but the name is actually [`bump.config.ts`](https://github.com/antfu/bumpp/blob/bf20fc75105282b5570261c3ab1069ad467b3c37/src/config.ts#L20). Maybe it's better...
### Describe the bug Here are the steps to reproduce the error: 1. create a mjs file 2. import versionBumpp from 'bumpp'; 3. run versionBumpp function import { ReleaseType }...
### Description This PR contains two fixes. One is the extra ts type `ReleaseType` in the build, and the other is that when `tsup` is packing, it encounters `picocolors` to...
### Describe the bug The settings for `commit` and `tag` appear to be completely ignored when set to `false` or even when set to a string (e.g. `jumpy` or `ju-%s-py`)....
### Describe the bug 你好,我现在正在研究这个包的用法,但是我发现配置了bumpp.config.ts配置并不生效,然后我看了下源代码  是不是name参数配置有误 ### Reproduction const { config } = await loadConfig({ name: 'bump', defaults: bumpConfigDefaults, overrides: { ...(overrides as VersionBumpOptions), }, cwd, }) ### System...
### Describe the bug After upgrade to v9.2.0 bump.config.ts not work, but with v9.1.0 it works. ### Reproduction https://github.com/yunsii/unplugin-polish-tagged-templates ### System Info ```Shell System: OS: Linux 5.15 Ubuntu 18.04.6 LTS...
### Describe the bug The `bumpp` package in the latest version does not find recursive `package.json` files if they are anywhere else but the `/packages/**` folder structure. This is despite...
### Description Add the `--old-version` parameter as default. When this parameter does not exist, use the version from the `package.json` file. ### Linked Issues ### Additional context
### Description Hey~ The feature is Implement a way to quickly move to the next version ## Used ```shell bumpp next // if old version is 0.0.7 then next version...