import { createCommand } from 'commander'; /** *`$ strapi templates:generate ` */ const command = ()=>{ return createCommand('templates:generate ').description('(deprecated) Generate template from Strapi project').action(()=>{ console.warn('This command is deprecated and will be removed in the next major release.'); console.warn('You can now copy an existing app and use it as a template.'); }); }; export { command }; //# sourceMappingURL=generate.mjs.map