We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8527e5 commit f25b4faCopy full SHA for f25b4fa
packages/create-commandkit/src/utils.ts
@@ -144,5 +144,10 @@ export async function fetchAvailableExamples(): Promise<string[]> {
144
}
145
146
export function isDenoProject(example: string): boolean {
147
+ const isOfficial = isOfficialExample(example);
148
+ // if it's not an official example, we can assume it's not a Deno project
149
+ // the user may use --use-deno to force a Deno project
150
+ if (!isOfficial) return false;
151
+
152
return example.startsWith('deno-') || example.startsWith('with-deno-');
153
0 commit comments