An open API service indexing awesome lists of open source software.

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.

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
```