@rspack-canary/core 1.6.0-canary-2ccce257-20251016173648 → 1.6.0-canary-beafb11e-20251017173713

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.
@@ -5,7 +5,4 @@ export declare const toObject: (input: string | Buffer | object) => object;
5
5
  export declare function serializeObject(map: string | object | undefined | null): Buffer | undefined;
6
6
  export declare function indent(str: string, prefix: string): string;
7
7
  export declare function stringifyLoaderObject(o: LoaderObject): string;
8
- export declare function asArray<T>(item: T[]): T[];
9
- export declare function asArray<T>(item: readonly T[]): readonly T[];
10
- export declare function asArray<T>(item: T): T[];
11
8
  export declare const unsupported: (name: string, issue?: string) => never;
@@ -0,0 +1,5 @@
1
+ import type { Configuration } from "../config";
2
+ /**
3
+ * Performs configuration validation that cannot be covered by TypeScript types.
4
+ */
5
+ export declare function validateRspackConfig(config: Configuration): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rspack-canary/core",
3
- "version": "1.6.0-canary-2ccce257-20251016173648",
3
+ "version": "1.6.0-canary-beafb11e-20251017173713",
4
4
  "webpackVersion": "5.75.0",
5
5
  "license": "MIT",
6
6
  "description": "The fast Rust-based web bundler with webpack-compatible API",
@@ -41,6 +41,7 @@
41
41
  "@rsbuild/plugin-node-polyfill": "^1.4.2",
42
42
  "@rslib/core": "0.15.1",
43
43
  "@swc/types": "0.1.25",
44
+ "@types/node": "^20.19.21",
44
45
  "@types/watchpack": "^2.4.4",
45
46
  "browserslist-load-config": "^1.0.1",
46
47
  "enhanced-resolve": "5.18.3",
@@ -51,14 +52,12 @@
51
52
  "tsx": "^4.20.6",
52
53
  "typescript": "^5.9.3",
53
54
  "watchpack": "^2.4.4",
54
- "webpack-sources": "3.3.3",
55
- "zod": "^4.1.12",
56
- "zod-validation-error": "^4.0.2"
55
+ "webpack-sources": "3.3.3"
57
56
  },
58
57
  "dependencies": {
59
58
  "@module-federation/runtime-tools": "0.20.0",
60
59
  "@rspack/lite-tapable": "1.0.1",
61
- "@rspack/binding": "npm:@rspack-canary/binding@1.6.0-canary-2ccce257-20251016173648"
60
+ "@rspack/binding": "npm:@rspack-canary/binding@1.6.0-canary-beafb11e-20251017173713"
62
61
  },
63
62
  "peerDependencies": {
64
63
  "@swc/helpers": ">=0.5.1"