Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / code-server / remove-node-download.patch
blobd19d4a2b5bf78b41927aec5ab41e1c9a076e8fab
1 --- ./lib/vscode/build/gulpfile.reh.js
2 +++ ./lib/vscode/build/gulpfile.reh.js
3 @@ -268,9 +268,6 @@
4 .pipe(util.stripSourceMappingURL())
5 .pipe(jsFilter.restore);
7 - const nodePath = `.build/node/v${nodeVersion}/${platform}-${arch}`;
8 - const node = gulp.src(`${nodePath}/**`, { base: nodePath, dot: true });
10 let web = [];
11 if (type === 'reh-web') {
12 web = [
13 @@ -287,7 +284,6 @@
14 license,
15 sources,
16 deps,
17 - node,
18 ...web
21 @@ -385,7 +381,6 @@
22 const destinationFolderName = `vscode-${type}${dashed(platform)}${dashed(arch)}`;
24 const serverTaskCI = task.define(`vscode-${type}${dashed(platform)}${dashed(arch)}${dashed(minified)}-ci`, task.series(
25 - gulp.task(`node-${platform}-${arch}`),
26 util.rimraf(path.join(BUILD_ROOT, destinationFolderName)),
27 packageTask(type, platform, arch, sourceFolderName, destinationFolderName)
28 ));