terminal-tasks
TypeScript icon, indicating that this package has built-in type declarations

0.0.5 • Public • Published

Terminal Tasks CircleCI

A simple terminal task list powered by Ora.



Install

With Yarn

yarn add terminal-tasks

or with NPM

npm install terminal-tasks

Usage

const TaskList = require('terminal-tasks')
 
const list = new TaskList(['First Task', 'Second Task'])
 
someTask().then(() => {
  // Move to next task
  list.next()
})

API

new TaskList(tasks, options)

tasks

type: array

Array of tasks. Tasks can be a string (alias for name) or a task object.

task object

{
  name: 'text to display next to spinner',
  ora: {} // ora options for the spinner (optional)
}

See ora options

options

type: object (optional)

{
  // Character to show in front of pending tasks
  // Should be 2 chars long
  pendingChar: '',
  // Character to show in front of messages
  // Should have 2 spaces in front and 1 space after (4 chars total)
  messageChar: '  > ',
  // Hide messages when .next() is called
  collapse: false,
  // ora options to set for every task
  ora: {}
}

Instance

.next(message)

Set current task status to succeed and start spinner on next task. Optionally takes a message argument which will show instead of the task name.

.info(message)

Set current task status to info and start spinner on next task. Optionally takes a message argument which will show instead of the task name.

.warn(message)

Set current task status to warn and start spinner on next task. Optionally takes a message argument which will show instead of the task name.

.fail(message)

Fail the current task and display it's name or the message argument. Will not start the next task.

.add(task)

Add a task to the list. Can be a string or task object.

.complete(message)

Run .next() for each remaining task. Optionally takes a message argument which will be logged to console.

.message(message)

Display an indented message below the current task. Will show when .next() is called unless collapse is set to true in options.

Readme

Keywords

none

Package Sidebar

Install

npm i terminal-tasks

Weekly Downloads

191

Version

0.0.5

License

MIT

Unpacked Size

73.3 kB

Total Files

16

Last publish

Collaborators

  • nklayman