electron-incremental-update 2.3.4 → 2.3.5

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.
Files changed (2) hide show
  1. package/dist/vite.js +5 -2
  2. package/package.json +1 -1
package/dist/vite.js CHANGED
@@ -681,8 +681,11 @@ var debugStartup = async (args) => {
681
681
  }
682
682
  };
683
683
  async function filterErrorMessageStartup(args, filter) {
684
- await args.startup(void 0, { stdio: ["inherit", "inherit", "pipe", "ipc"] });
684
+ await args.startup(void 0, { stdio: ["inherit", "pipe", "pipe", "ipc"] });
685
685
  const elec = process.electronApp;
686
+ elec.stderr.addListener("data", (data) => {
687
+ console.log(data.toString().trimEnd());
688
+ });
686
689
  elec.stderr.addListener("data", (data) => {
687
690
  const message = data.toString();
688
691
  if (filter(message)) {
@@ -892,7 +895,7 @@ async function electronWithUpdater(options) {
892
895
  ...electronPluginOptions,
893
896
  updater: { buildAsarOption, buildEntryOption, buildVersionOption }
894
897
  },
895
- (key, value) => (key === "privateKey" || key === "cert") && shouldShowKey ? value : `<${key.toUpperCase()}>`,
898
+ (key, value) => (key === "privateKey" || key === "cert") && shouldShowKey ? `<${key.toUpperCase()}>` : value,
896
899
  2
897
900
  ),
898
901
  { timestamp: true }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "electron-incremental-update",
3
3
  "type": "module",
4
- "version": "2.3.4",
4
+ "version": "2.3.5",
5
5
  "description": "Electron incremental update tools with Vite plugin, support bytecode protection",
6
6
  "author": "subframe7536",
7
7
  "license": "MIT",