diff --git a/packages/theme/lib/cli/commands/theme/init.ts b/packages/theme/lib/cli/commands/theme/init.ts index 90f463c..773b01e 100644 --- a/packages/theme/lib/cli/commands/theme/init.ts +++ b/packages/theme/lib/cli/commands/theme/init.ts @@ -142,6 +142,12 @@ async function prompt(command: ThemeCommand) { message: 'A documentation URL for this theme.', initial: 'https://developer.youcan.shop', }, + { + type: 'text', + name: 'theme_tutorial_url', + message: 'A video tutorial URL for this theme.', + initial: 'https://www.youtube.com/@Youcandotshop', + }, ]); } diff --git a/packages/theme/lib/types.ts b/packages/theme/lib/types.ts index e995b6a..3d2592e 100644 --- a/packages/theme/lib/types.ts +++ b/packages/theme/lib/types.ts @@ -15,6 +15,7 @@ export interface Metadata { theme_version: string; theme_support_url: string; theme_documentation_url: string; + theme_tutorial_url: string; config: FileDescriptor[]; layouts: FileDescriptor[]; sections: FileDescriptor[];