Skip to content

Create Qwik - Next Steps Deno Corrected - Bug #7520 #7566

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/easy-boxes-win.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'create-qwik': patch
---

fix: create-qwik logAppCreated.ts now displays correct next steps for deno.

After using the create-qwik command, the logAppCreated.ts file was not displaying the correct next steps for deno. Prior to this fix it would display "deno start" instead of "deno task start". This would cause a failure to run, as deno requires the 'task' keyword. This fixes bug 7520
6 changes: 5 additions & 1 deletion packages/create-qwik/src/helpers/logAppCreated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ export function logAppCreated(pkgManager: string, result: CreateAppResult, ranIn
if (!ranInstall) {
outString.push(` ${pkgManager} install`);
}
outString.push(` ${pkgManager} start`);
if (pkgManager === 'deno') {
outString.push(` deno task start`);
} else {
outString.push(` ${pkgManager} start`);
}
outString.push(``);

note(outString.join('\n'), 'Result');
Expand Down