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.
deno task dev
1 parent 003fa1a commit e3709e0Copy full SHA for e3709e0
1 file changed
packages/cli/commands/create.ts
@@ -75,7 +75,7 @@ export const create = new Command('create')
75
initialSteps.push(`${i++}: ${highlight(`${pm} install`)}`);
76
}
77
78
- const pmRun = pm === 'npm' ? 'npm run dev --' : `${pm} dev`;
+ const pmRun = pm === 'npm' ? 'npm run dev --' : pm === 'deno' ? 'deno task dev' : `${pm} dev`;
79
const steps = [
80
...initialSteps,
81
`${i++}: ${highlight('git init && git add -A && git commit -m "Initial commit"')} (optional)`,
0 commit comments