UNPKG

@napi-rs/cli

Version:
14 lines (12 loc) 291 B
import { Command } from 'clipanion' /** * A command that prints the usage of all commands. * * Paths: `-h`, `--help` */ export class HelpCommand extends Command<any> { static paths = [[`-h`], [`--help`]] async execute() { await this.context.stdout.write(this.cli.usage()) } }