File size: 1,981 Bytes
b7c4c8f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | /**
* Plugin command handlers
* These handlers are used by the CLI plugin commands
*/
export async function pluginInstallHandler(plugin: string, options: any): Promise<void> {
console.error('Plugin install handler not implemented');
process.exit(1);
}
export async function pluginUninstallHandler(plugin: string, options: any): Promise<void> {
console.error('Plugin uninstall handler not implemented');
process.exit(1);
}
export async function pluginEnableHandler(plugin: string, options: any): Promise<void> {
console.error('Plugin enable handler not implemented');
process.exit(1);
}
export async function pluginDisableHandler(plugin: string | undefined, options: any): Promise<void> {
console.error('Plugin disable handler not implemented');
process.exit(1);
}
export async function pluginUpdateHandler(plugin: string, options: any): Promise<void> {
console.error('Plugin update handler not implemented');
process.exit(1);
}
export async function pluginValidateHandler(manifestPath: string, options: any): Promise<void> {
console.error('Plugin validate handler not implemented');
process.exit(1);
}
export async function pluginListHandler(options: any): Promise<void> {
console.error('Plugin list handler not implemented');
process.exit(1);
}
export async function marketplaceAddHandler(source: string, options: any): Promise<void> {
console.error('Marketplace add handler not implemented');
process.exit(1);
}
export async function marketplaceListHandler(options: any): Promise<void> {
console.error('Marketplace list handler not implemented');
process.exit(1);
}
export async function marketplaceRemoveHandler(name: string, options: any): Promise<void> {
console.error('Marketplace remove handler not implemented');
process.exit(1);
}
export async function marketplaceUpdateHandler(name: string | undefined, options: any): Promise<void> {
console.error('Marketplace update handler not implemented');
process.exit(1);
} |