0.5.0 • Published 5 years ago

listr-update-renderer v0.5.0

Weekly downloads
4,075,719
License
MIT
Repository
github
Last release
5 years ago

listr-update-renderer Build Status

Listr update renderer

Install

$ npm install --save listr-update-renderer

Usage

const UpdaterRenderer = require('listr-update-renderer');
const Listr = require('listr');

const list = new Listr([
    {
        title: 'foo',
        task: () => Promise.resolve('bar')
    }
], {
    renderer: UpdaterRenderer,
	collapse: false
});

list.run();

Note: This is the default renderer for Listr and doesn't need to be specified.

Options

These options should be provided in the Listr options object.

showSubtasks

Type: boolean Default: true

Set to false if you want to disable the rendering of the subtasks. Subtasks will be rendered if an error occurred in one of them.

collapse

Type: boolean Default: true

Set to false if you don't want subtasks to be hidden after the main task succeed.

clearOutput

Type: boolean Default: false

Clear the output when all the tasks are executed succesfully.

Related

License

MIT © Sam Verschueren

0.5.0

5 years ago

0.4.0

7 years ago

0.3.0

7 years ago

0.2.0

7 years ago

0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago