e7bc545b36
- Projects can be public or private -> they are either oss or not. - With flags like this, there is no default. We either want to pass a flag or be prompted later if we forget - To achieve this: added a custom sywac type of Switch, that is able to handle this concept - We may want to change this to a proper boolean that defaults to true - That would be easier, and possibly more sensible for the public tool |
||
---|---|---|
.. | ||
test | ||
.eslintrc.js | ||
index.js | ||
LICENSE | ||
package.json | ||
pretty-cli.js | ||
README.md | ||
styles.js |
Pretty CLI
A mini-module to style a sywac instance in a standard way
Install
Either: npm i @tryghost/pretty-cli --save
Or: yarn add @tryghost/pretty-cli
Usage
E.g. const prettyCLI = require('@tryghost/pretty-cli');
prettyCLI
is a pre-styled instance of the sywac API.
See the sywac quickstart and config guide for full usage.
Example:
#!/usr/bin/env node
const prettyCLI = require('@tryghost/pretty-cli');
prettyCLI
.command({
flags: 'myTask [option]',
desc: 'Run myTask',
run: (argv) => { ... do something here }
})
.parseAndExit();
You can also grab a fresh instance of the api with prettyCLI.Api.get()
.
The style rules used are available at prettyCLI.styles
.
Test
yarn lint
run just eslintyarn test
run lint && tests
Copyright & License
Copyright (c) 2018 Ghost Foundation - Released under the MIT license.