c4e2208158
- @tryghost/adapter-manager@0.2.7 - @tryghost/bootstrap-socket@0.2.5 - @tryghost/constants@0.1.4 - @tryghost/errors@0.2.7 - @tryghost/image-transform@1.0.7 - @tryghost/job-manager@0.7.1 - @tryghost/moleculer-service-from-class@0.2.10 - @tryghost/mw-session-from-token@0.1.14 - @tryghost/pretty-cli@1.2.13 - @tryghost/promise@0.1.4 - @tryghost/release-utils@0.6.10 - @tryghost/security@0.2.4 - @tryghost/session-service@0.1.15 - @tryghost/vhost-middleware@1.0.11 - @tryghost/zip@1.1.8 |
||
---|---|---|
.. | ||
lib | ||
test | ||
.eslintrc.js | ||
index.js | ||
LICENSE | ||
package.json | ||
README.md |
Pretty CLI
A mini-module to style a sywac instance in a standard way
Install
Either: npm install @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();
Pretty CLI also provides a common UI interface, providing log functions to output coloured messages to the UI:
const ui = require('@tryghost/pretty-cli/ui');`
ui.log.info('Done');
ui.log.warn('Uh Oh', 'Something went wrong');
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) 2013-2020 Ghost Foundation - Released under the MIT license.