Skip to content

Commit

Permalink
Merge pull request #22000 from literalpie/qwik-interactive-stories
Browse files Browse the repository at this point in the history
CLI: Mark qwik as using addon-interactions
  • Loading branch information
shilman committed Apr 18, 2023
1 parent bb06cbf commit 37fc23d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion code/lib/cli/src/generators/baseGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,9 @@ const getFrameworkDetails = (
const stripVersions = (addons: string[]) => addons.map((addon) => getPackageDetails(addon)[0]);

const hasInteractiveStories = (rendererId: SupportedRenderers) =>
['react', 'angular', 'preact', 'svelte', 'vue', 'vue3', 'html', 'solid'].includes(rendererId);
['react', 'angular', 'preact', 'svelte', 'vue', 'vue3', 'html', 'solid', 'qwik'].includes(
rendererId
);

const hasFrameworkTemplates = (framework?: SupportedFrameworks) =>
['angular', 'nextjs'].includes(framework);
Expand Down

0 comments on commit 37fc23d

Please sign in to comment.