Skip to content

Commit

Permalink
fix(package): make packagerConfig.quiet configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
erickzhao committed Jan 31, 2025
1 parent f084010 commit 17df864
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/api/core/src/api/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -300,8 +300,8 @@ export const listrPackage = (
asar: false,
overwrite: true,
ignore: [/^\/out\//g],
quiet: false,
...forgeConfig.packagerConfig,
quiet: true,
dir: ctx.dir,
arch: arch as PackagerArch,
platform,
Expand All @@ -313,7 +313,6 @@ export const listrPackage = (
out: calculatedOutDir,
electronVersion: await getElectronVersion(ctx.dir, packageJSON),
};
packageOpts.quiet = true;

if (packageOpts.all) {
throw new Error('config.forge.packagerConfig.all is not supported by Electron Forge');
Expand Down

0 comments on commit 17df864

Please sign in to comment.