Skip to content

Commit 1e6f0d6

Browse files
authored
init: update instructions to run project from a fresh scaffold (#2996)
After scaffolding the project with ``` deno run -Ar jsr:@fresh/init@2.0.0-alpha.34 ``` Instruction show up to run the project: ``` Enter your project directory using cd fresh-project. Run deno task start to start the project. CTRL-C to stop. Stuck? Join our Discord https://discord.gg/deno ``` these instructions seem to be outdated since running `deno task start` on this project throws an error. While this error also hints that you might want to run the dev server, I think it gives a bad impression that a newly scaffolded project is throwing an error after running the command that it has specified. Also, not many people, especially beginners, read the error messages completely.
1 parent 50d6f7f commit 1e6f0d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

init/src/init.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ This will watch the project directory and restart as necessary.`;
684684
);
685685
}
686686
console.log(
687-
"Run %cdeno task start%c to start the project. %cCTRL-C%c to stop.",
687+
"Run %cdeno task dev%c to start the project. %cCTRL-C%c to stop.",
688688
"color: cyan",
689689
"",
690690
"color: cyan",

0 commit comments

Comments
 (0)