Browse Source

Update wrapper

Adjust logging flag.
master
TheoryOfNekomata 1 week ago
parent
commit
107dcfe53d
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      packages/cli/src/packages/cli-wrapper.ts

+ 2
- 0
packages/cli/src/packages/cli-wrapper.ts View File

@@ -213,6 +213,7 @@ export class Cli {
const loggerFn = thisCli.options.logger;
const defaultLogger = {
level: 'info',
enabled: typeof loggerFn === 'boolean' ? loggerFn : true,
debug: stdoutLogFn,
info: stdoutLogFn,
warn: stdoutLogFn,
@@ -252,6 +253,7 @@ export class Cli {
}

command({ parameters, command, interactiveMode = true, handler, ...args }: CommandArgs): Cli {
// TODO type-safe declaration of positional/optional arguments
const {
option = 'interactive',
alias = 'i',


Loading…
Cancel
Save