electrobun 0.0.19-beta.63 → 0.0.19-beta.66
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.
- package/package.json +1 -1
- package/src/cli/index.ts +2 -2
package/package.json
CHANGED
package/src/cli/index.ts
CHANGED
|
@@ -1441,11 +1441,11 @@ if (commandArg === "init") {
|
|
|
1441
1441
|
const platformDmgPath = join(buildFolder, `${appFileName}${platformSuffix}.dmg`);
|
|
1442
1442
|
artifactsToUpload.push(platformDmgPath);
|
|
1443
1443
|
// hdiutil create -volname "YourAppName" -srcfolder /path/to/YourApp.app -ov -format UDZO YourAppName.dmg
|
|
1444
|
-
// Note: use
|
|
1444
|
+
// Note: use ULFO (lzfse) for better compatibility with large CEF frameworks and modern macOS
|
|
1445
1445
|
execSync(
|
|
1446
1446
|
`hdiutil create -volname "${appFileName}" -srcfolder ${escapePathForTerminal(
|
|
1447
1447
|
appBundleFolderPath
|
|
1448
|
-
)} -ov -format
|
|
1448
|
+
)} -ov -format ULFO ${escapePathForTerminal(dmgPath)}`
|
|
1449
1449
|
);
|
|
1450
1450
|
|
|
1451
1451
|
if (shouldCodesign) {
|