@rspack/core 1.3.7 → 1.3.8

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.
Files changed (36) hide show
  1. package/compiled/graceful-fs/index.js +8 -8
  2. package/compiled/zod/index.d.ts +2 -1772
  3. package/compiled/zod/lib/ZodError.d.ts +164 -0
  4. package/compiled/zod/lib/__tests__/Mocker.d.ts +17 -0
  5. package/compiled/zod/lib/benchmarks/datetime.d.ts +5 -0
  6. package/compiled/zod/lib/benchmarks/discriminatedUnion.d.ts +5 -0
  7. package/compiled/zod/lib/benchmarks/index.d.ts +1 -0
  8. package/compiled/zod/lib/benchmarks/ipv4.d.ts +5 -0
  9. package/compiled/zod/lib/benchmarks/object.d.ts +5 -0
  10. package/compiled/zod/lib/benchmarks/primitives.d.ts +5 -0
  11. package/compiled/zod/lib/benchmarks/realworld.d.ts +5 -0
  12. package/compiled/zod/lib/benchmarks/string.d.ts +5 -0
  13. package/compiled/zod/lib/benchmarks/union.d.ts +5 -0
  14. package/compiled/zod/lib/errors.d.ts +5 -0
  15. package/compiled/zod/lib/external.d.ts +6 -0
  16. package/compiled/zod/lib/helpers/enumUtil.d.ts +8 -0
  17. package/compiled/zod/lib/helpers/errorUtil.d.ts +9 -0
  18. package/compiled/zod/lib/helpers/parseUtil.d.ts +78 -0
  19. package/compiled/zod/lib/helpers/partialUtil.d.ts +8 -0
  20. package/compiled/zod/lib/helpers/typeAliases.d.ts +2 -0
  21. package/compiled/zod/lib/helpers/util.d.ts +82 -0
  22. package/compiled/zod/lib/index.d.ts +4 -0
  23. package/compiled/zod/lib/locales/en.d.ts +3 -0
  24. package/compiled/zod/lib/standard-schema.d.ts +102 -0
  25. package/compiled/zod/lib/types.d.ts +1062 -0
  26. package/compiled/zod/package.json +1 -1
  27. package/dist/ChunkGroup.d.ts +10 -0
  28. package/dist/builtin-loader/swc/pluginImport.d.ts +1 -1
  29. package/dist/builtin-loader/swc/types.d.ts +632 -631
  30. package/dist/config/types.d.ts +10 -2
  31. package/dist/config/utils.d.ts +1 -1
  32. package/dist/config/zod.d.ts +77 -77
  33. package/dist/exports.d.ts +5 -0
  34. package/dist/index.js +572 -552
  35. package/dist/swc.d.ts +5 -0
  36. package/package.json +3 -3
@@ -176,7 +176,7 @@ export type ChunkLoadingGlobal = string;
176
176
  export type EnabledLibraryTypes = string[];
177
177
  /** Whether delete all files in the output directory. */
178
178
  export type Clean = boolean | {
179
- keep?: string;
179
+ keep?: string | RegExp | ((path: string) => boolean);
180
180
  };
181
181
  /** Output JavaScript files as module type. */
182
182
  export type OutputModule = boolean;
@@ -1848,6 +1848,10 @@ export type LazyCompilationOptions = {
1848
1848
  * Options for incremental builds.
1849
1849
  */
1850
1850
  export type Incremental = {
1851
+ /**
1852
+ * Warning if there are cases that not friendly for incremental
1853
+ */
1854
+ silent?: boolean;
1851
1855
  /**
1852
1856
  * Enable incremental make.
1853
1857
  */
@@ -1909,6 +1913,10 @@ export type Incremental = {
1909
1913
  */
1910
1914
  emitAssets?: boolean;
1911
1915
  };
1916
+ /**
1917
+ * Presets for incremental
1918
+ */
1919
+ export type IncrementalPresets = boolean | "none" | "safe" | "advance" | "advance-silent";
1912
1920
  /**
1913
1921
  * Options for experiments.buildHttp
1914
1922
  */
@@ -1963,7 +1971,7 @@ export type Experiments = {
1963
1971
  /**
1964
1972
  * Enable incremental builds.
1965
1973
  */
1966
- incremental?: boolean | Incremental;
1974
+ incremental?: IncrementalPresets | Incremental;
1967
1975
  /**
1968
1976
  * Enable multi-threaded code splitting algorithm.
1969
1977
  */
@@ -1,4 +1,4 @@
1
- import z, { type IssueData, type ParseReturnType, ZodType, type ZodTypeDef } from "../../compiled/zod";
1
+ import { type IssueData, type ParseReturnType, ZodType, type ZodTypeDef, z } from "../../compiled/zod";
2
2
  import type { RspackOptions } from "./types";
3
3
  export type ZodCrossFieldsOptions = ZodTypeDef & {
4
4
  patterns: Array<{