Ghost/ghost/pretty-cli
Hannah Wolfe 66f1ddcbe9 🎨 Update to use files array in package.json
- run `slimer fix package.json` to add a files array everywhere
- manually update slimer-cli to have a files array for bin
- manually update slimer to include commands or else this will break!!
- update pretty-cli to use our standard /lib/ pattern
- this means we only publish what we need to npm, and keeps things cleaner and safer
2018-11-29 16:04:13 +00:00
..
lib 🎨 Update to use files array in package.json 2018-11-29 16:04:13 +00:00
test 🎨 Update to use files array in package.json 2018-11-29 16:04:13 +00:00
.eslintrc.js Pretty CLI - provide a styled sywac instance 2018-09-21 13:12:12 +01:00
index.js 🎨 Update to use files array in package.json 2018-11-29 16:04:13 +00:00
LICENSE Pretty CLI - provide a styled sywac instance 2018-09-21 13:12:12 +01:00
package.json 🎨 Update to use files array in package.json 2018-11-29 16:04:13 +00:00
README.md 📖 Update all README.md files to use full commands 2018-10-04 14:45:02 +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.