@pipelab/plugin-tauri 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 +5 -5
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(),
|
|
@@ -150661,7 +150661,9 @@ var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
150661
150661
|
}
|
|
150662
150662
|
})();
|
|
150663
150663
|
}));
|
|
150664
|
-
|
|
150664
|
+
//#endregion
|
|
150665
|
+
//#region ../../node_modules/serve-handler/src/index.js
|
|
150666
|
+
var require_src = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
150665
150667
|
const { promisify: promisify$1 } = __require("util");
|
|
150666
150668
|
const path$1 = __require("path");
|
|
150667
150669
|
const { createHash } = __require("crypto");
|
|
@@ -151113,11 +151115,12 @@ var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
151113
151115
|
response.writeHead(response.statusCode || 200, headers);
|
|
151114
151116
|
stream.pipe(response);
|
|
151115
151117
|
};
|
|
151116
|
-
}))
|
|
151117
|
-
var import_semver = /* @__PURE__ */ __toESM(require_semver(), 1);
|
|
151118
|
-
var import_lib = /* @__PURE__ */ __toESM(require_lib(), 1);
|
|
151118
|
+
}));
|
|
151119
151119
|
//#endregion
|
|
151120
151120
|
//#region ../../packages/core-node/src/server.ts
|
|
151121
|
+
var import_semver = /* @__PURE__ */ __toESM(require_semver(), 1);
|
|
151122
|
+
var import_lib = /* @__PURE__ */ __toESM(require_lib(), 1);
|
|
151123
|
+
require_src();
|
|
151121
151124
|
const sendStartupProgress = (message) => {
|
|
151122
151125
|
console.log(`[Startup Progress] ${message}`);
|
|
151123
151126
|
webSocketServer.broadcast("startup:progress", {
|