Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/simonpai/bumpvr
https://github.com/simonpai/bumpvr
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/simonpai/bumpvr
- Owner: simonpai
- License: mit
- Created: 2024-07-06T07:17:49.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-27T16:24:50.000Z (5 months ago)
- Last Synced: 2024-09-28T18:48:33.822Z (3 months ago)
- Language: JavaScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bumpvr
`bumpvr` is a tool for automating the process of bumping version numbers in your Node.js project's package.json.
* Supports NPM workspaces (monorepo).
* Supports replacing local depenedencies (`file:...`) among NPM workspace projects.## Installation
```bash
npm install -g bumpvr
```## Usage
```bash
bumpvr [options]
```For example,
```bash
bumpvr 1.2.3
```will bump the version number in your package.json and in the package.json files of all the projects in your NPM workspace to `1.2.3`.
## Options
| Option | Description |
| --- | --- |
| `--cwd` | The directory where the package.json file is located. Default is the current working directory. |
| `--no-semver` | Do not validate the version number against the Semantic Versioning specification. |## License
This project is licensed under the [MIT License](./LICENSE).