[extensions] Add extensions update command (#6878)

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
This commit is contained in:
christine betts 2025-08-25 19:41:15 +00:00 committed by GitHub
parent 41ece1a8b7
commit f32a54fefc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 174 additions and 4 deletions

View file

@ -8,6 +8,7 @@ import { CommandModule } from 'yargs';
import { installCommand } from './extensions/install.js';
import { uninstallCommand } from './extensions/uninstall.js';
import { listCommand } from './extensions/list.js';
import { updateCommand } from './extensions/update.js';
export const extensionsCommand: CommandModule = {
command: 'extensions <command>',
@ -17,6 +18,7 @@ export const extensionsCommand: CommandModule = {
.command(installCommand)
.command(uninstallCommand)
.command(listCommand)
.command(updateCommand)
.demandCommand(1, 'You need at least one command before continuing.')
.version(false),
handler: () => {