mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-01-01 22:49:13 +00:00
71 lines
1.8 KiB
TypeScript
71 lines
1.8 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { type CommandModule } from 'yargs';
|
|
import { disableExtension } from '../../config/extension.js';
|
|
import { SettingScope } from '../../config/settings.js';
|
|
import { getErrorMessage } from '../../utils/errors.js';
|
|
|
|
interface DisableArgs {
|
|
name: string;
|
|
scope?: string;
|
|
}
|
|
|
|
export function handleDisable(args: DisableArgs) {
|
|
try {
|
|
if (args.scope?.toLowerCase() === 'workspace') {
|
|
disableExtension(args.name, SettingScope.Workspace);
|
|
} else {
|
|
disableExtension(args.name, SettingScope.User);
|
|
}
|
|
console.log(
|
|
`Extension "${args.name}" successfully disabled for scope "${args.scope}".`,
|
|
);
|
|
} catch (error) {
|
|
console.error(getErrorMessage(error));
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
export const disableCommand: CommandModule = {
|
|
command: 'disable [--scope] <name>',
|
|
describe: 'Disables an extension.',
|
|
builder: (yargs) =>
|
|
yargs
|
|
.positional('name', {
|
|
describe: 'The name of the extension to disable.',
|
|
type: 'string',
|
|
})
|
|
.option('scope', {
|
|
describe: 'The scope to disable the extenison in.',
|
|
type: 'string',
|
|
default: SettingScope.User,
|
|
})
|
|
.check((argv) => {
|
|
if (
|
|
argv.scope &&
|
|
!Object.values(SettingScope)
|
|
.map((s) => s.toLowerCase())
|
|
.includes((argv.scope as string).toLowerCase())
|
|
) {
|
|
throw new Error(
|
|
`Invalid scope: ${argv.scope}. Please use one of ${Object.values(
|
|
SettingScope,
|
|
)
|
|
.map((s) => s.toLowerCase())
|
|
.join(', ')}.`,
|
|
);
|
|
}
|
|
return true;
|
|
}),
|
|
handler: (argv) => {
|
|
handleDisable({
|
|
name: argv['name'] as string,
|
|
scope: argv['scope'] as string,
|
|
});
|
|
},
|
|
};
|