@pipelab/plugin-system 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.mjs CHANGED
@@ -2092,8 +2092,7 @@ const defaultAppSettings = settingsMigratorInternal.createDefault({
2092
2092
  completed: false
2093
2093
  }
2094
2094
  },
2095
- plugins: DEFAULT_PLUGINS,
2096
- isInternalMigrationBannerClosed: false
2095
+ plugins: DEFAULT_PLUGINS
2097
2096
  });
2098
2097
  settingsMigratorInternal.createMigrations({
2099
2098
  defaultValue: defaultAppSettings,
@@ -2144,12 +2143,12 @@ settingsMigratorInternal.createMigrations({
2144
2143
  createMigration({
2145
2144
  version: "6.0.0",
2146
2145
  up: (state) => {
2147
- const { cacheFolder: _, clearTemporaryFoldersOnPipelineEnd: __, ...rest } = state;
2146
+ const { cacheFolder, clearTemporaryFoldersOnPipelineEnd: __, ...rest } = state;
2148
2147
  return {
2149
2148
  ...rest,
2149
+ cacheFolder,
2150
2150
  agents: [],
2151
- plugins: DEFAULT_PLUGINS,
2152
- isInternalMigrationBannerClosed: false
2151
+ plugins: DEFAULT_PLUGINS
2153
2152
  };
2154
2153
  }
2155
2154
  }),
@@ -2502,7 +2501,8 @@ object({
2502
2501
  enabled: boolean(),
2503
2502
  description: string()
2504
2503
  })),
2505
- isInternalMigrationBannerClosed: optional(boolean(), false)
2504
+ cacheFolder: optional(string()),
2505
+ tempFolder: optional(string())
2506
2506
  });
2507
2507
  const ConnectionValidator = looseObject({
2508
2508
  id: string(),
@@ -144270,7 +144270,9 @@ var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
144270
144270
  }
144271
144271
  })();
144272
144272
  }));
144273
- (/* @__PURE__ */ __commonJSMin(((exports, module) => {
144273
+ //#endregion
144274
+ //#region ../../node_modules/serve-handler/src/index.js
144275
+ var require_src = /* @__PURE__ */ __commonJSMin(((exports, module) => {
144274
144276
  const { promisify } = __require("util");
144275
144277
  const path$1 = __require("path");
144276
144278
  const { createHash } = __require("crypto");
@@ -144722,9 +144724,10 @@ var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
144722
144724
  response.writeHead(response.statusCode || 200, headers);
144723
144725
  stream.pipe(response);
144724
144726
  };
144725
- })))();
144727
+ }));
144726
144728
  require_semver();
144727
144729
  require_lib();
144730
+ require_src();
144728
144731
  //#endregion
144729
144732
  //#region ../../packages/core-node/src/handler-func.ts
144730
144733
  const { join: join$1 } = path;