@pipelab/plugin-electron 1.0.0-beta.19 → 1.0.0-beta.20
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/index.cjs +344 -341
- package/dist/index.mjs +13 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -6
package/dist/index.mjs
CHANGED
|
@@ -2106,8 +2106,7 @@ const defaultAppSettings = settingsMigratorInternal.createDefault({
|
|
|
2106
2106
|
completed: false
|
|
2107
2107
|
}
|
|
2108
2108
|
},
|
|
2109
|
-
plugins: DEFAULT_PLUGINS
|
|
2110
|
-
isInternalMigrationBannerClosed: false
|
|
2109
|
+
plugins: DEFAULT_PLUGINS
|
|
2111
2110
|
});
|
|
2112
2111
|
settingsMigratorInternal.createMigrations({
|
|
2113
2112
|
defaultValue: defaultAppSettings,
|
|
@@ -2158,12 +2157,12 @@ settingsMigratorInternal.createMigrations({
|
|
|
2158
2157
|
createMigration({
|
|
2159
2158
|
version: "6.0.0",
|
|
2160
2159
|
up: (state) => {
|
|
2161
|
-
const { cacheFolder
|
|
2160
|
+
const { cacheFolder, clearTemporaryFoldersOnPipelineEnd: __, ...rest } = state;
|
|
2162
2161
|
return {
|
|
2163
2162
|
...rest,
|
|
2163
|
+
cacheFolder,
|
|
2164
2164
|
agents: [],
|
|
2165
|
-
plugins: DEFAULT_PLUGINS
|
|
2166
|
-
isInternalMigrationBannerClosed: false
|
|
2165
|
+
plugins: DEFAULT_PLUGINS
|
|
2167
2166
|
};
|
|
2168
2167
|
}
|
|
2169
2168
|
}),
|
|
@@ -2516,7 +2515,8 @@ object({
|
|
|
2516
2515
|
enabled: boolean(),
|
|
2517
2516
|
description: string()
|
|
2518
2517
|
})),
|
|
2519
|
-
|
|
2518
|
+
cacheFolder: optional(string()),
|
|
2519
|
+
tempFolder: optional(string())
|
|
2520
2520
|
});
|
|
2521
2521
|
const ConnectionValidator = looseObject({
|
|
2522
2522
|
id: string(),
|
|
@@ -150683,7 +150683,9 @@ var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
150683
150683
|
}
|
|
150684
150684
|
})();
|
|
150685
150685
|
}));
|
|
150686
|
-
|
|
150686
|
+
//#endregion
|
|
150687
|
+
//#region ../../node_modules/serve-handler/src/index.js
|
|
150688
|
+
var require_src = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
150687
150689
|
const { promisify: promisify$1 } = __require("util");
|
|
150688
150690
|
const path$1 = __require("path");
|
|
150689
150691
|
const { createHash } = __require("crypto");
|
|
@@ -151135,11 +151137,12 @@ var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
151135
151137
|
response.writeHead(response.statusCode || 200, headers);
|
|
151136
151138
|
stream.pipe(response);
|
|
151137
151139
|
};
|
|
151138
|
-
}))
|
|
151139
|
-
var import_semver$1 = /* @__PURE__ */ __toESM(require_semver(), 1);
|
|
151140
|
-
var import_lib = /* @__PURE__ */ __toESM(require_lib(), 1);
|
|
151140
|
+
}));
|
|
151141
151141
|
//#endregion
|
|
151142
151142
|
//#region ../../packages/core-node/src/server.ts
|
|
151143
|
+
var import_semver$1 = /* @__PURE__ */ __toESM(require_semver(), 1);
|
|
151144
|
+
var import_lib = /* @__PURE__ */ __toESM(require_lib(), 1);
|
|
151145
|
+
require_src();
|
|
151143
151146
|
const sendStartupProgress = (message) => {
|
|
151144
151147
|
console.log(`[Startup Progress] ${message}`);
|
|
151145
151148
|
webSocketServer.broadcast("startup:progress", {
|