UNPKG

flexmonster-cli

Version:

CLI for Flexmonster Pivot Table & Charts installation

24 lines (22 loc) 571 B
import { commandInAction, COMMANDS, program } from '../cli.js'; export function executeHelp(){ commandInAction(); program.help(); } export function initHelpCommand() { program.command('help') // sub-command name .alias('h') // alternative sub-command .description(COMMANDS[4].description) // command description .action(function () { // function to execute when command is used executeHelp(); }) .addHelpText('after', ` Examples: flexmonster help flexmonster h `); }