https://github.com/oresoftware/bumpitty-bump-bump
Bump a value in your package.json so that Docker (and others) notice changes.
https://github.com/oresoftware/bumpitty-bump-bump
bump bumping docker nodejs npm npm-package package
Last synced: 6 months ago
JSON representation
Bump a value in your package.json so that Docker (and others) notice changes.
- Host: GitHub
- URL: https://github.com/oresoftware/bumpitty-bump-bump
- Owner: ORESoftware
- Created: 2017-08-31T19:46:45.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-30T03:45:53.000Z (over 7 years ago)
- Last Synced: 2024-10-07T09:15:54.340Z (12 months ago)
- Topics: bump, bumping, docker, nodejs, npm, npm-package, package
- Language: JavaScript
- Size: 66.4 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bumpitty-Bump-Bump (aka b3)
Bump a value in your package.json so that Docker (and others) notice changes.
# API
## cli
```bash
npm install -g bumpitty-bump-bump
cd your-project && b3
```## programmatic
```bash
npm install -S bumpitty-bump-bump
``````typescript
import {bumpSync, bump, bumpp} from 'bumpitty-bump-bump';// bumpSync is synchronous
// bump is async callback style
// bumpp is async promise style
```