falcon-listr-update-renderer

Customized Listr update renderer created for the SFDX-Falcon CLI plugin. Based on listr-update-renderer, created by Sam Verschueren.

Usage no npm install needed!

<script type="module">
  import falconListrUpdateRenderer from 'https://cdn.skypack.dev/falcon-listr-update-renderer';
</script>

README

falcon-listr-update-renderer

Note: This renderer is based on v0.4.0 of the original listr-update-renderer, created by Sam Verschueren.

Install

$ npm install --save falcon-listr-update-renderer

Usage

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

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

list.run();

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