@kindly/pronto
v1.3.1
Published
The Kindly CLI for internal development
Downloads
786
Keywords
Readme
PRONTO
This package is a CLI tool to manage our internal workflows in Kindly organization.
Installation
Locally:
npm install -D @kindly/pronto
Globally:
npm install -g @kindly/pronto
Usage
$ pronto [command] [options]
Commands supported:
release
Create a new release by creating and pushing a new tag, then notify on Slack tech channel.
# Example
$ pronto release
dev
Pushes your local current branch to the remote development branch, then notify on Slack tech channel.
# Example
$ pronto dev
$ pronto dev --ask
$ pronto dev --silent
$ pronto dev -as
Options supported:
-a, --ask
Ask permission on Slack from the last person who committed to the development branch before taking over.
-s, --silent
Do not notify on Slack, instead post on the CLI.
Global options supported:
--help
Show help messages about the package or specific commands.
# Examples
$ pronto --help
$ pronto release --help
Development
After committing your code changes:
- Run
npm version [major|minor|patch]
to bump the package version. - Run
npm publish
to publish the package to npm registry. - Make sure everything is pushed to the remote repository.