@rspack-canary/browser 1.6.0-canary-17d2172b-20251016033144 → 1.6.0-canary-2ccce257-20251016173648
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 +892 -581
- package/dist/rspack.wasm32-wasi.wasm +0 -0
- package/dist/schema/config.d.ts +1 -1
- package/dist/schema/loaders.d.ts +1 -1
- package/dist/schema/plugins.d.ts +1 -1
- package/dist/schema/utils.d.ts +1 -1
- package/dist/schema/validate.d.ts +1 -1
- package/package.json +1 -1
|
Binary file
|
package/dist/schema/config.d.ts
CHANGED
package/dist/schema/loaders.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as z from "zod
|
|
1
|
+
import * as z from "zod";
|
|
2
2
|
export declare const getZodSwcLoaderOptionsSchema: () => z.ZodObject<{
|
|
3
3
|
$schema: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4
4
|
test: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString>]>>>;
|
package/dist/schema/plugins.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { JsBuildMeta } from "../binding";
|
|
2
|
-
import * as z from "zod
|
|
2
|
+
import * as z from "zod";
|
|
3
3
|
export declare const getIgnorePluginOptionsSchema: () => z.ZodUnion<readonly [z.ZodObject<{
|
|
4
4
|
contextRegExp: z.ZodOptional<z.ZodCustom<RegExp, RegExp>>;
|
|
5
5
|
resourceRegExp: z.ZodCustom<RegExp, RegExp>;
|
package/dist/schema/utils.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as z from "zod
|
|
1
|
+
import * as z from "zod";
|
|
2
2
|
export declare const numberOrInfinity: z.ZodUnion<[z.ZodNumber, z.ZodLiteral<number>]>;
|
|
3
3
|
export declare const intOrInfinity: z.ZodUnion<[z.ZodInt, z.ZodLiteral<number>]>;
|
|
4
4
|
export declare const anyFunction: z.ZodCustom<(...args: unknown[]) => any, (...args: unknown[]) => any>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rspack-canary/browser",
|
|
3
|
-
"version": "1.6.0-canary-
|
|
3
|
+
"version": "1.6.0-canary-2ccce257-20251016173648",
|
|
4
4
|
"webpackVersion": "5.75.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Rspack for running in the browser. This is still in early stage and may not follow the semver.",
|