Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 469 Bytes

CONTRIBUTING.md

File metadata and controls

40 lines (28 loc) · 469 Bytes

Contributing

Set up the repo

git clone git@github.com:artsy/cli.git
cd cli
yarn install

Run tests

yarn lint
yarn test

Run the local development version of the cli

./bin/run

Scaffold a new command

oclif generate command myawesomecommand

Run tests for the new command

yarn mocha test/commands/myawesomecommand.test.ts

Execute the new command

./bin/run myawesomecommand arg1 arg2