Skip to content

Commit e3709e0

Browse files
authored
Deno also requires deno task dev
1 parent 003fa1a commit e3709e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/cli/commands/create.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export const create = new Command('create')
7575
initialSteps.push(`${i++}: ${highlight(`${pm} install`)}`);
7676
}
7777

78-
const pmRun = pm === 'npm' ? 'npm run dev --' : `${pm} dev`;
78+
const pmRun = pm === 'npm' ? 'npm run dev --' : pm === 'deno' ? 'deno task dev' : `${pm} dev`;
7979
const steps = [
8080
...initialSteps,
8181
`${i++}: ${highlight('git init && git add -A && git commit -m "Initial commit"')} (optional)`,

0 commit comments

Comments
 (0)