@pipelab/plugin-minify 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
@@ -4437,8 +4437,7 @@ const defaultAppSettings = settingsMigratorInternal.createDefault({
4437
4437
  completed: false
4438
4438
  }
4439
4439
  },
4440
- plugins: DEFAULT_PLUGINS,
4441
- isInternalMigrationBannerClosed: false
4440
+ plugins: DEFAULT_PLUGINS
4442
4441
  });
4443
4442
  settingsMigratorInternal.createMigrations({
4444
4443
  defaultValue: defaultAppSettings,
@@ -4489,12 +4488,12 @@ settingsMigratorInternal.createMigrations({
4489
4488
  createMigration({
4490
4489
  version: "6.0.0",
4491
4490
  up: (state) => {
4492
- const { cacheFolder: _, clearTemporaryFoldersOnPipelineEnd: __, ...rest } = state;
4491
+ const { cacheFolder, clearTemporaryFoldersOnPipelineEnd: __, ...rest } = state;
4493
4492
  return {
4494
4493
  ...rest,
4494
+ cacheFolder,
4495
4495
  agents: [],
4496
- plugins: DEFAULT_PLUGINS,
4497
- isInternalMigrationBannerClosed: false
4496
+ plugins: DEFAULT_PLUGINS
4498
4497
  };
4499
4498
  }
4500
4499
  }),
@@ -4847,7 +4846,8 @@ object({
4847
4846
  enabled: boolean(),
4848
4847
  description: string()
4849
4848
  })),
4850
- isInternalMigrationBannerClosed: optional(boolean(), false)
4849
+ cacheFolder: optional(string()),
4850
+ tempFolder: optional(string())
4851
4851
  });
4852
4852
  const ConnectionValidator = looseObject({
4853
4853
  id: string(),
@@ -146587,7 +146587,9 @@ var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
146587
146587
  }
146588
146588
  })();
146589
146589
  }));
146590
- (/* @__PURE__ */ __commonJSMin(((exports, module) => {
146590
+ //#endregion
146591
+ //#region ../../node_modules/serve-handler/src/index.js
146592
+ var require_src = /* @__PURE__ */ __commonJSMin(((exports, module) => {
146591
146593
  const { promisify } = __require("util");
146592
146594
  const path$1 = __require("path");
146593
146595
  const { createHash } = __require("crypto");
@@ -147039,9 +147041,10 @@ var require_error = /* @__PURE__ */ __commonJSMin(((exports, module) => {
147039
147041
  response.writeHead(response.statusCode || 200, headers);
147040
147042
  stream.pipe(response);
147041
147043
  };
147042
- })))();
147044
+ }));
147043
147045
  require_semver();
147044
147046
  require_lib();
147047
+ require_src();
147045
147048
  //#endregion
147046
147049
  //#region ../../packages/core-node/src/handler-func.ts
147047
147050
  const { join: join$1 } = path;