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 fac0f62 commit 24e9958Copy full SHA for 24e9958
templates/cli/lib/emulation/utils.js.twig
@@ -50,7 +50,7 @@ const systemTools = {
50
},
51
'deno': {
52
isCompiled: false,
53
- startCommand: "deno start",
+ startCommand: "deno run --allow-run --allow-net --allow-write --allow-read --allow-env src/server.ts",
54
dependencyFiles: [ ]
55
56
'dart': {
templates/cli/lib/questions.js.twig
@@ -94,7 +94,7 @@ const getInstallCommand = (runtime) => {
94
case 'dart':
95
return 'dart pub get';
96
case 'deno':
97
- return "deno install";
+ return "deno cache src/main.ts";
98
case 'node':
99
return 'npm install';
100
case 'bun':
0 commit comments