1.2.16 • Published 5 years ago
@withbluedot/pretty-cli v1.2.16
Pretty CLI
A mini-module to style a sywac instance in a standard way
Install
Either: npm install @withbluedot/pretty-cli --save
Or: yarn add @withbluedot/pretty-cli
Usage
E.g. const prettyCLI = require('@withbluedot/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('@withbluedot/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('@withbluedot/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 lintrun just eslintyarn testrun lint && tests
Copyright & License
Copyright (c) 2013-2021 Ghost Foundation - Released under the MIT license.