Skip to content

Commit

Permalink
👷 create out/node_modules in prepackage.js
Browse files Browse the repository at this point in the history
  • Loading branch information
sestinj committed May 18, 2024
1 parent e33895d commit 430c6fe
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions extensions/vscode/scripts/prepackage.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ function execCmdSync(cmd) {
// Clear folders that will be packaged to ensure clean slate
rimrafSync(path.join(__dirname, "..", "bin"));
rimrafSync(path.join(__dirname, "..", "out"));
fs.mkdirSync(path.join(__dirname, "..", "out", "node_modules"), {
recursive: true,
});

// Get the target to package for
let target = undefined;
Expand Down

0 comments on commit 430c6fe

Please sign in to comment.