@jib/listr
v0.0.1
Published
Listr plugin for @jib/cli
Downloads
1
Readme
Jib Listr Plugin
Add listr
to @jib/cli
projects.
About
This project was generated using the jib
command line generator.
Usage
npm install --save @jib/listr
Using within @jib/cli
commands:
import { Command, Plugin } from '@jib/cli';
import { JibListr } from '@jib/listr';
@Command({/* */})
class MyCustomCommand {
// inject plugin
@Plugin(JibListr)
public helper: JibListr;
public async run(options: any, ...args: string[]) {
return this.helper.list([
//...
]);
}
}