Ghost/ghost/pretty-cli
Hannah Wolfe d715596b50 Published new versions
- @tryghost/generator-slimer@1.0.7
 - @tryghost/pretty-cli@1.1.1
 - @tryghost/slimer-cli@0.1.8
 - @tryghost/slimer@0.2.1
2018-10-04 20:14:39 +01:00
..
test Pretty CLI - provide a styled sywac instance 2018-09-21 13:12:12 +01:00
.eslintrc.js Pretty CLI - provide a styled sywac instance 2018-09-21 13:12:12 +01:00
index.js Pretty CLI - provide a styled sywac instance 2018-09-21 13:12:12 +01:00
LICENSE Pretty CLI - provide a styled sywac instance 2018-09-21 13:12:12 +01:00
package.json Published new versions 2018-10-04 20:14:39 +01:00
pretty-cli.js 🎨 Move Slimer UI into Pretty CLI 2018-10-04 13:30:59 +01:00
README.md 📖 Update all README.md files to use full commands 2018-10-04 14:45:02 +01:00
styles.js Pretty CLI - provide a styled sywac instance 2018-09-21 13:12:12 +01:00
ui.js 🎨 Move Slimer UI into Pretty CLI 2018-10-04 13:30:59 +01:00

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 eslint
  • yarn test run lint && tests

Copyright & License

Copyright (c) 2018 Ghost Foundation - Released under the MIT license.