From 7ada79bb7a585f7bef53d644b56b31342c088b1f Mon Sep 17 00:00:00 2001 From: Jeff Moe Date: Thu, 23 Nov 2023 12:43:25 -0700 Subject: [PATCH] rm more intellij --- src/extensions/vscode/scripts/prepackage.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/extensions/vscode/scripts/prepackage.js b/src/extensions/vscode/scripts/prepackage.js index 5e4a314..461dda7 100644 --- a/src/extensions/vscode/scripts/prepackage.js +++ b/src/extensions/vscode/scripts/prepackage.js @@ -29,14 +29,6 @@ exec("npm install", (error) => { throw error; } - if (fs.existsSync(indexHtmlPath)) { - fs.rmSync(indexHtmlPath, {}); - } - fs.copyFileSync("tmp_index.html", indexHtmlPath); - fs.unlinkSync("tmp_index.html"); - console.log("Copied gui build to Intellij extension"); - }); - // Then copy over the dist folder to the VSCode extension const vscodeGuiPath = path.join("../extensions/vscode/gui"); fs.mkdirSync(vscodeGuiPath, { recursive: true });