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 0e42247 commit 4f62083Copy full SHA for 4f62083
cli/incloud.ts
@@ -121,8 +121,12 @@ async function doInit(_rootPath: string, projectName?: string) {
121
const status = await proc.status;
122
Deno.writeTextFileSync("main.ts", makeMainFile(projectName));
123
if (status.success) {
124
+ const clean = new Deno.Command(Deno.execPath(), {
125
+ args: ["clean"],
126
+ });
127
+ await clean.output();
128
const cmd = new Deno.Command(Deno.execPath(), {
- args: ["cache", "--reload", "main.ts"],
129
+ args: ["cache", "main.ts"],
130
});
131
await cmd.output();
132
0 commit comments