circleci-bin
v1.1.22
Published
CircleCI local command line tool distributed as a node module
Downloads
147
Readme
circleci-bin
CircleCI local command line tool distributed as a node module.
Motivation
This allows you to include the CircleCI binary in your project/application without requiring users to separately install it on their system.
Installation
Install the node module to include the CircleCI binary in your project:
npm install circleci-bin --save-dev
or:
yarn add circleci-bin --dev
Usage
Add and reference the circleci
binary from your package.json scripts:
{
"scripts": {
"circleci": "circleci"
}
}
Run a command from the shell:
yarn circleci --help
or:
npm run circleci --help