Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
36 lines
876 B
TypeScript
36 lines
876 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import type { CommandModule } from 'yargs';
|
|
import { loadUserExtensions, toOutputString } from '../../config/extension.js';
|
|
import { getErrorMessage } from '../../utils/errors.js';
|
|
|
|
export async function handleList() {
|
|
try {
|
|
const extensions = loadUserExtensions();
|
|
if (extensions.length === 0) {
|
|
console.log('No extensions installed.');
|
|
return;
|
|
}
|
|
console.log(
|
|
extensions
|
|
.map((extension, _): string => toOutputString(extension))
|
|
.join('\n\n'),
|
|
);
|
|
} catch (error) {
|
|
console.error(getErrorMessage(error));
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
export const listCommand: CommandModule = {
|
|
command: 'list',
|
|
describe: 'Lists installed extensions.',
|
|
builder: (yargs) => yargs,
|
|
handler: async () => {
|
|
await handleList();
|
|
},
|
|
};
|