chore: bump electron@39.5.2 (#294238)

* chore: bump electron@39.5.2

* chore: update checksums

* chore: undo bits on macOS

* chore: update lockfile

* chore: update node.js build

* chore: bump distro
This commit is contained in:
Robo
2026-02-13 06:11:08 +09:00
committed by GitHub
parent b5f3937f12
commit 27ea56f796
10 changed files with 100 additions and 104 deletions

View File

@@ -474,7 +474,7 @@ function packageTask(platform: string, arch: string, sourceFolderName: string, d
.pipe(util.fixWin32DirectoryPermissions())
.pipe(filter(['**', '!**/.github/**'], { dot: true })) // https://github.com/microsoft/vscode/issues/116523
.pipe(electron({ ...config, platform, arch: arch === 'armhf' ? 'arm' : arch, ffmpegChromium: false }))
.pipe(filter(['**', '!LICENSE', '!version'], { dot: true }));
.pipe(filter(['**', '!LICENSE', '!version', ...(platform === 'darwin' ? ['!**/Contents/Applications/**'] : [])], { dot: true }));
if (platform === 'linux') {
result = es.merge(result, gulp.src('resources/completions/bash/code', { base: '.' })