electrobun 1.13.0-beta.1 → 1.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Default CEF version shipped with this Electrobun release.
|
|
2
2
|
// All platforms use the same version. Update this single pair when bumping CEF.
|
|
3
|
-
export const CEF_VERSION = `
|
|
4
|
-
export const CHROMIUM_VERSION = `
|
|
3
|
+
export const CEF_VERSION = `145.0.23+g3e7fe1c`;
|
|
4
|
+
export const CHROMIUM_VERSION = `145.0.7632.68`;
|
|
5
5
|
export const DEFAULT_CEF_VERSION_STRING = `${CEF_VERSION}+chromium-${CHROMIUM_VERSION}`;
|
package/package.json
CHANGED
package/src/cli/index.ts
CHANGED
|
@@ -52,6 +52,8 @@ function createTar(tarPath: string, cwd: string, entries: string[]) {
|
|
|
52
52
|
{
|
|
53
53
|
cwd,
|
|
54
54
|
stdio: "pipe",
|
|
55
|
+
// Prevent macOS tar from including Apple Double (._*) files. No-op on other platforms.
|
|
56
|
+
env: { ...process.env, COPYFILE_DISABLE: "1" },
|
|
55
57
|
},
|
|
56
58
|
);
|
|
57
59
|
}
|
|
@@ -1282,7 +1284,7 @@ For more information, visit: ${config.app.homepage || 'https://electrobun.dev'}
|
|
|
1282
1284
|
// The -C changes to the staging dir, then . archives its contents directly
|
|
1283
1285
|
execSync(
|
|
1284
1286
|
`tar -czf ${escapePathForTerminal(archivePath)} -C ${escapePathForTerminal(stagingDir)} .`,
|
|
1285
|
-
{ stdio: 'inherit' }
|
|
1287
|
+
{ stdio: 'inherit', env: { ...process.env, COPYFILE_DISABLE: "1" } }
|
|
1286
1288
|
);
|
|
1287
1289
|
|
|
1288
1290
|
// Verify the archive was created
|