mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
29 lines
888 B
Diff
29 lines
888 B
Diff
--- ./lib/vscode/build/gulpfile.reh.js
|
|
+++ ./lib/vscode/build/gulpfile.reh.js
|
|
@@ -268,9 +268,6 @@
|
|
.pipe(util.stripSourceMappingURL())
|
|
.pipe(jsFilter.restore);
|
|
|
|
- const nodePath = `.build/node/v${nodeVersion}/${platform}-${arch}`;
|
|
- const node = gulp.src(`${nodePath}/**`, { base: nodePath, dot: true });
|
|
-
|
|
let web = [];
|
|
if (type === 'reh-web') {
|
|
web = [
|
|
@@ -287,7 +284,6 @@
|
|
license,
|
|
sources,
|
|
deps,
|
|
- node,
|
|
...web
|
|
);
|
|
|
|
@@ -385,7 +381,6 @@
|
|
const destinationFolderName = `vscode-${type}${dashed(platform)}${dashed(arch)}`;
|
|
|
|
const serverTaskCI = task.define(`vscode-${type}${dashed(platform)}${dashed(arch)}${dashed(minified)}-ci`, task.series(
|
|
- gulp.task(`node-${platform}-${arch}`),
|
|
util.rimraf(path.join(BUILD_ROOT, destinationFolderName)),
|
|
packageTask(type, platform, arch, sourceFolderName, destinationFolderName)
|
|
));
|