mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-01 15:29:19 +03:00
a929b6a0f9
- matches logging in ignition: https://github.com/TryGhost/Ignition/blob/master/lib/logging/PrettyStream.js#L11 - so that it's possible to add log lines to our CLI tools that have a consistent format |
||
---|---|---|
.. | ||
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();
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-2019 Ghost Foundation - Released under the MIT license.