https://github.com/caseywebdev/bumpit
Easily bump versions for your package.json, bower.json, and/or component.json from the command line.
https://github.com/caseywebdev/bumpit
Last synced: 3 months ago
JSON representation
Easily bump versions for your package.json, bower.json, and/or component.json from the command line.
- Host: GitHub
- URL: https://github.com/caseywebdev/bumpit
- Owner: caseywebdev
- License: mit
- Created: 2013-04-08T19:16:46.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2024-06-05T12:57:39.000Z (about 1 year ago)
- Last Synced: 2025-03-05T19:51:51.542Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bumpit
Easily bump versions for your package.json, bower.json, and/or component.json
from the command line.```bash
npm install -g bumpit
``````
Usage: bumpit [[major|minor|patch|prerelease [identifier]]|[version]]
``````bash
> bumpit
package.json: 0.0.0 -> 0.0.1
> bumpit 0.1.2
package.json: 0.0.1 -> 0.1.2
> bumpit
package.json: 0.1.2 -> 0.1.3
> bumpit major
package.json: 0.1.2-4 -> 1.0.0
> bumpit minor 3
package.json: 1.0.0 -> 1.3.0
> bumpit 1.4.0-alpha.0
package.json: 1.4.0 -> 1.4.0-alpha.0
> bumpit prerelease
package.json: 1.4.0-alpha.0 -> 1.4.0-alpha.1
> bumpit prerelease beta
package.json: 1.4.0-alpha -> 1.4.0-beta
```