We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 884491d commit 015a99eCopy full SHA for 015a99e
scripts/build.ts
@@ -169,13 +169,9 @@ class Builder {
169
});
170
}
171
172
- if (fs.existsSync(path.join(vscodeSourcePath, "node_modules"))) {
173
- this.log("Using existing VS Code node_modules");
174
- } else {
175
- await this.task("Installing VS Code dependencies", () => {
176
- return util.promisify(cp.exec)("yarn", { cwd: vscodeSourcePath });
177
- });
178
- }
+ await this.task("Installing VS Code dependencies", () => {
+ return util.promisify(cp.exec)("yarn", { cwd: vscodeSourcePath });
+ });
179
180
if (fs.existsSync(path.join(vscodeSourcePath, ".build/extensions"))) {
181
this.log("Using existing built-in-extensions");
0 commit comments