@pipelab/plugin-construct 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 +4 -4
package/dist/index.mjs
CHANGED
|
@@ -2107,8 +2107,7 @@ const defaultAppSettings = settingsMigratorInternal.createDefault({
|
|
|
2107
2107
|
completed: false
|
|
2108
2108
|
}
|
|
2109
2109
|
},
|
|
2110
|
-
plugins: DEFAULT_PLUGINS
|
|
2111
|
-
isInternalMigrationBannerClosed: false
|
|
2110
|
+
plugins: DEFAULT_PLUGINS
|
|
2112
2111
|
});
|
|
2113
2112
|
settingsMigratorInternal.createMigrations({
|
|
2114
2113
|
defaultValue: defaultAppSettings,
|
|
@@ -2159,12 +2158,12 @@ settingsMigratorInternal.createMigrations({
|
|
|
2159
2158
|
createMigration({
|
|
2160
2159
|
version: "6.0.0",
|
|
2161
2160
|
up: (state) => {
|
|
2162
|
-
const { cacheFolder
|
|
2161
|
+
const { cacheFolder, clearTemporaryFoldersOnPipelineEnd: __, ...rest } = state;
|
|
2163
2162
|
return {
|
|
2164
2163
|
...rest,
|
|
2164
|
+
cacheFolder,
|
|
2165
2165
|
agents: [],
|
|
2166
|
-
plugins: DEFAULT_PLUGINS
|
|
2167
|
-
isInternalMigrationBannerClosed: false
|
|
2166
|
+
plugins: DEFAULT_PLUGINS
|
|
2168
2167
|
};
|
|
2169
2168
|
}
|
|
2170
2169
|
}),
|
|
@@ -2517,7 +2516,8 @@ object({
|
|
|
2517
2516
|
enabled: boolean(),
|
|
2518
2517
|
description: string()
|
|
2519
2518
|
})),
|
|
2520
|
-
|
|
2519
|
+
cacheFolder: optional(string()),
|
|
2520
|
+
tempFolder: optional(string())
|
|
2521
2521
|
});
|
|
2522
2522
|
const ConnectionValidator = looseObject({
|
|
2523
2523
|
id: string(),
|
|
@@ -150650,7 +150650,9 @@ var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
150650
150650
|
}
|
|
150651
150651
|
})();
|
|
150652
150652
|
}));
|
|
150653
|
-
|
|
150653
|
+
//#endregion
|
|
150654
|
+
//#region ../../node_modules/serve-handler/src/index.js
|
|
150655
|
+
var require_src = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
150654
150656
|
const { promisify: promisify$1 } = __require("util");
|
|
150655
150657
|
const path$1 = __require("path");
|
|
150656
150658
|
const { createHash } = __require("crypto");
|
|
@@ -151102,11 +151104,12 @@ var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
151102
151104
|
response.writeHead(response.statusCode || 200, headers);
|
|
151103
151105
|
stream.pipe(response);
|
|
151104
151106
|
};
|
|
151105
|
-
}))
|
|
151106
|
-
var import_semver = /* @__PURE__ */ __toESM(require_semver(), 1);
|
|
151107
|
-
var import_lib = /* @__PURE__ */ __toESM(require_lib(), 1);
|
|
151107
|
+
}));
|
|
151108
151108
|
//#endregion
|
|
151109
151109
|
//#region ../../packages/core-node/src/server.ts
|
|
151110
|
+
var import_semver = /* @__PURE__ */ __toESM(require_semver(), 1);
|
|
151111
|
+
var import_lib = /* @__PURE__ */ __toESM(require_lib(), 1);
|
|
151112
|
+
require_src();
|
|
151110
151113
|
const sendStartupProgress = (message) => {
|
|
151111
151114
|
console.log(`[Startup Progress] ${message}`);
|
|
151112
151115
|
webSocketServer.broadcast("startup:progress", {
|