1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 14:23:32 +00:00

[deps] Vault: Update commander to v11 (#7329)

* [deps] Vault: Update commander to v11

* [deps] Vault: Update commander to v11

* [deps] Vault: Update commander to v11

* [deps] Vault: Update commander to v11

* removed unused interfaces

* fix shell completions (#7756)

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gbubemismith <gsmithwalter@gmail.com>
Co-authored-by: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com>
Co-authored-by: SmithThe4th <gsmith@bitwarden.com>
This commit is contained in:
renovate[bot]
2024-01-31 17:17:04 -05:00
committed by GitHub
parent 01781848f3
commit 83812d471c
15 changed files with 152 additions and 212 deletions

View File

@@ -1,5 +1,5 @@
import * as chalk from "chalk";
import * as program from "commander";
import { program, Command, OptionValues } from "commander";
import { AuthenticationStatus } from "@bitwarden/common/auth/enums/authentication-status";
@@ -135,7 +135,7 @@ export class Program {
writeLn(" bw login --sso");
writeLn("", true);
})
.action(async (email: string, password: string, options: program.OptionValues) => {
.action(async (email: string, password: string, options: OptionValues) => {
if (!options.check) {
await this.exitIfAuthed();
const command = new LoginCommand(
@@ -427,7 +427,7 @@ export class Program {
writeLn(" bw completion --shell zsh");
writeLn("", true);
})
.action(async (options: program.OptionValues, cmd: program.Command) => {
.action(async (options: OptionValues, cmd: Command) => {
const command = new CompletionCommand();
const response = await command.run(options);
this.processResponse(response);