Skip to content

Commit

Permalink
chore: update npmlog types (#3913)
Browse files Browse the repository at this point in the history
  • Loading branch information
amorscher committed Dec 20, 2023
1 parent 5646a45 commit adea20e
Show file tree
Hide file tree
Showing 3 changed files with 207 additions and 119 deletions.
5 changes: 1 addition & 4 deletions libs/core/src/lib/command/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,7 @@ export class Command<T extends CommandConfigOptions = CommandConfigOptions> {
log.heading = "lerna";

const argv = cloneDeep(_argv);
log.silly(
"argv",
argv as any /*types declaration of npmlog is not correct here see https://github.com/DefinitelyTyped/DefinitelyTyped/pull/67232 */
);
log.silly("argv", argv);

// "FooCommand" => "foo"
this.name = this.constructor.name.replace(/Command$/, "").toLowerCase();
Expand Down
Loading

0 comments on commit adea20e

Please sign in to comment.