UNPKG
haz-cli
Version:
latest (0.0.4)
0.0.4
0.0.1
HAZ CLI
github.com/brianclogan/haz
brianclogan/haz
haz-cli
/
dist
/
base-command.js
11 lines
(10 loc)
•
272 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{ Command, Flags } from
'@oclif/core'
; export
class
BaseCommand
extends
Command
{
static
baseFlags
=
{ verbose: Flags.
boolean
({
char
:
'v'
,
default
:
false
, description:
'Run with verbose logging'
, }), }; }