@pipelab/plugin-itch 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
@@ -2105,8 +2105,7 @@ const defaultAppSettings = settingsMigratorInternal.createDefault({
2105
2105
  completed: false
2106
2106
  }
2107
2107
  },
2108
- plugins: DEFAULT_PLUGINS,
2109
- isInternalMigrationBannerClosed: false
2108
+ plugins: DEFAULT_PLUGINS
2110
2109
  });
2111
2110
  settingsMigratorInternal.createMigrations({
2112
2111
  defaultValue: defaultAppSettings,
@@ -2157,12 +2156,12 @@ settingsMigratorInternal.createMigrations({
2157
2156
  createMigration({
2158
2157
  version: "6.0.0",
2159
2158
  up: (state) => {
2160
- const { cacheFolder: _, clearTemporaryFoldersOnPipelineEnd: __, ...rest } = state;
2159
+ const { cacheFolder, clearTemporaryFoldersOnPipelineEnd: __, ...rest } = state;
2161
2160
  return {
2162
2161
  ...rest,
2162
+ cacheFolder,
2163
2163
  agents: [],
2164
- plugins: DEFAULT_PLUGINS,
2165
- isInternalMigrationBannerClosed: false
2164
+ plugins: DEFAULT_PLUGINS
2166
2165
  };
2167
2166
  }
2168
2167
  }),
@@ -2515,7 +2514,8 @@ object({
2515
2514
  enabled: boolean(),
2516
2515
  description: string()
2517
2516
  })),
2518
- isInternalMigrationBannerClosed: optional(boolean(), false)
2517
+ cacheFolder: optional(string()),
2518
+ tempFolder: optional(string())
2519
2519
  });
2520
2520
  const ConnectionValidator = looseObject({
2521
2521
  id: string(),
@@ -150578,7 +150578,9 @@ var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
150578
150578
  }
150579
150579
  })();
150580
150580
  }));
150581
- (/* @__PURE__ */ __commonJSMin(((exports, module) => {
150581
+ //#endregion
150582
+ //#region ../../node_modules/serve-handler/src/index.js
150583
+ var require_src = /* @__PURE__ */ __commonJSMin(((exports, module) => {
150582
150584
  const { promisify: promisify$1 } = __require("util");
150583
150585
  const path$1 = __require("path");
150584
150586
  const { createHash } = __require("crypto");
@@ -151030,9 +151032,10 @@ var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
151030
151032
  response.writeHead(response.statusCode || 200, headers);
151031
151033
  stream.pipe(response);
151032
151034
  };
151033
- })))();
151035
+ }));
151034
151036
  require_semver();
151035
151037
  require_lib();
151038
+ require_src();
151036
151039
  //#endregion
151037
151040
  //#region ../../packages/core-node/src/handler-func.ts
151038
151041
  const { join: join$1 } = path;