|
|
@@ -3,7 +3,7 @@ import { hideBin } from "yargs/helpers"
|
|
|
import { RunCommand } from "./cli/cmd/run"
|
|
|
import { GenerateCommand } from "./cli/cmd/generate"
|
|
|
import { Log } from "./util/log"
|
|
|
-import { LoginCommand, LogoutCommand, SwitchCommand, OrgsCommand } from "./cli/cmd/account"
|
|
|
+import { ConsoleCommand } from "./cli/cmd/account"
|
|
|
import { ProvidersCommand } from "./cli/cmd/providers"
|
|
|
import { AgentCommand } from "./cli/cmd/agent"
|
|
|
import { UpgradeCommand } from "./cli/cmd/upgrade"
|
|
|
@@ -135,10 +135,7 @@ let cli = yargs(hideBin(process.argv))
|
|
|
.command(RunCommand)
|
|
|
.command(GenerateCommand)
|
|
|
.command(DebugCommand)
|
|
|
- .command(LoginCommand)
|
|
|
- .command(LogoutCommand)
|
|
|
- .command(SwitchCommand)
|
|
|
- .command(OrgsCommand)
|
|
|
+ .command(ConsoleCommand)
|
|
|
.command(ProvidersCommand)
|
|
|
.command(AgentCommand)
|
|
|
.command(UpgradeCommand)
|