@capawesome/cli
Version:
The Capawesome Cloud Command Line Interface (CLI) to manage Live Updates and more.
15 lines (14 loc) • 594 B
JavaScript
import { defineCommand, defineOptions } from '@robingenz/zli';
import consola from 'consola';
import { z } from 'zod';
export default defineCommand({
description: 'Delete an app bundle. Deprecated.',
options: defineOptions(z.object({
appId: z.string().optional().describe('ID of the app.'),
bundleId: z.string().optional().describe('ID of the bundle.'),
})),
action: async (options, args) => {
consola.warn('The `apps:bundles:delete` command has been deprecated. Please use the `apps:liveupdates` commands instead.');
process.exit(1);
},
});