1--- ./build/gulpfile.reh.js
2+++ ./build/gulpfile.reh.js
3@@ -277,8 +277,6 @@
4 .pipe(util.stripSourceMappingURL())
5 .pipe(jsFilter.restore);
6
7- const nodePath = `.build/node/v${nodeVersion}/${platform}-${platform === 'darwin' ? 'x64' : arch}`;
8- const node = gulp.src(`${nodePath}/**`, { base: nodePath, dot: true });
9
10 let web = [];
11 if (type === 'reh-web') {
12@@ -296,7 +294,6 @@
13 license,
14 sources,
15 deps,
16- node,
17 ...web
18 );
19
20@@ -376,7 +373,6 @@
21 const destinationFolderName = `vscode-${type}${dashed(platform)}${dashed(arch)}`;
22
23 const serverTaskCI = task.define(`vscode-${type}${dashed(platform)}${dashed(arch)}${dashed(minified)}-ci`, task.series(
24- gulp.task(`node-${platform}-${platform === 'darwin' ? 'x64' : arch}`),
25 util.rimraf(path.join(BUILD_ROOT, destinationFolderName)),
26 packageTask(type, platform, arch, sourceFolderName, destinationFolderName)
27 ));