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.
- package/dist/vite.js +5 -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", "
|
|
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 ?
|
|
898
|
+
(key, value) => (key === "privateKey" || key === "cert") && shouldShowKey ? `<${key.toUpperCase()}>` : value,
|
|
896
899
|
2
|
|
897
900
|
),
|
|
898
901
|
{ timestamp: true }
|
package/package.json
CHANGED