@rspack/core 1.3.7 → 1.3.9
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/compiled/browserslist/index.js +77 -57
- package/compiled/browserslist/package.json +1 -1
- package/compiled/graceful-fs/index.js +8 -8
- package/compiled/zod/index.d.ts +2 -1772
- package/compiled/zod/index.js +35 -35
- package/compiled/zod/lib/ZodError.d.ts +164 -0
- package/compiled/zod/lib/__tests__/Mocker.d.ts +17 -0
- package/compiled/zod/lib/benchmarks/datetime.d.ts +5 -0
- package/compiled/zod/lib/benchmarks/discriminatedUnion.d.ts +5 -0
- package/compiled/zod/lib/benchmarks/index.d.ts +1 -0
- package/compiled/zod/lib/benchmarks/ipv4.d.ts +5 -0
- package/compiled/zod/lib/benchmarks/object.d.ts +5 -0
- package/compiled/zod/lib/benchmarks/primitives.d.ts +5 -0
- package/compiled/zod/lib/benchmarks/realworld.d.ts +5 -0
- package/compiled/zod/lib/benchmarks/string.d.ts +5 -0
- package/compiled/zod/lib/benchmarks/union.d.ts +5 -0
- package/compiled/zod/lib/errors.d.ts +5 -0
- package/compiled/zod/lib/external.d.ts +6 -0
- package/compiled/zod/lib/helpers/enumUtil.d.ts +8 -0
- package/compiled/zod/lib/helpers/errorUtil.d.ts +9 -0
- package/compiled/zod/lib/helpers/parseUtil.d.ts +78 -0
- package/compiled/zod/lib/helpers/partialUtil.d.ts +8 -0
- package/compiled/zod/lib/helpers/typeAliases.d.ts +2 -0
- package/compiled/zod/lib/helpers/util.d.ts +82 -0
- package/compiled/zod/lib/index.d.ts +4 -0
- package/compiled/zod/lib/locales/en.d.ts +3 -0
- package/compiled/zod/lib/standard-schema.d.ts +102 -0
- package/compiled/zod/lib/types.d.ts +1062 -0
- package/compiled/zod/package.json +1 -1
- package/dist/ChunkGroup.d.ts +10 -0
- package/dist/builtin-loader/swc/pluginImport.d.ts +1 -1
- package/dist/builtin-loader/swc/types.d.ts +632 -631
- package/dist/builtin-plugin/html-plugin/hooks.d.ts +3 -1
- package/dist/builtin-plugin/html-plugin/options.d.ts +7 -3
- package/dist/builtin-plugin/html-plugin/plugin.d.ts +0 -1
- package/dist/config/types.d.ts +11 -3
- package/dist/config/utils.d.ts +1 -1
- package/dist/config/zod.d.ts +77 -77
- package/dist/exports.d.ts +5 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +644 -597
- package/dist/setupEnv.d.ts +1 -0
- package/dist/stats/statsFactoryUtils.d.ts +1 -0
- package/dist/swc.d.ts +5 -0
- package/package.json +11 -11
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
package/dist/swc.d.ts
ADDED
@@ -0,0 +1,5 @@
|
|
1
|
+
import type { TransformOutput } from "@rspack/binding";
|
2
|
+
import type { JsMinifyOptions, Options as TransformOptions } from "../compiled/@swc/types";
|
3
|
+
export type { TransformOutput, TransformOptions, JsMinifyOptions };
|
4
|
+
export declare function minify(source: string, options?: JsMinifyOptions): Promise<TransformOutput>;
|
5
|
+
export declare function transform(source: string, options?: TransformOptions): Promise<TransformOutput>;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@rspack/core",
|
3
|
-
"version": "1.3.
|
3
|
+
"version": "1.3.9",
|
4
4
|
"webpackVersion": "5.75.0",
|
5
5
|
"license": "MIT",
|
6
6
|
"description": "The fast Rust-based web bundler with webpack-compatible API",
|
@@ -37,29 +37,29 @@
|
|
37
37
|
"directory": "packages/rspack"
|
38
38
|
},
|
39
39
|
"devDependencies": {
|
40
|
-
"@swc/core": "1.11.
|
40
|
+
"@swc/core": "1.11.24",
|
41
41
|
"@swc/types": "0.1.21",
|
42
|
-
"@rslib/core": "0.6.
|
42
|
+
"@rslib/core": "0.6.8",
|
43
43
|
"@types/graceful-fs": "4.1.9",
|
44
44
|
"@types/watchpack": "^2.4.4",
|
45
45
|
"@types/webpack-sources": "3.2.3",
|
46
|
-
"browserslist": "^4.24.
|
46
|
+
"browserslist": "^4.24.5",
|
47
47
|
"enhanced-resolve": "5.18.1",
|
48
48
|
"graceful-fs": "^4.2.11",
|
49
49
|
"prebundle": "^1.3.3",
|
50
|
-
"tsx": "^4.19.
|
51
|
-
"typescript": "^5.
|
50
|
+
"tsx": "^4.19.4",
|
51
|
+
"typescript": "^5.8.3",
|
52
52
|
"watchpack": "^2.4.2",
|
53
53
|
"webpack-sources": "3.2.3",
|
54
|
-
"zod": "^3.24.
|
55
|
-
"zod-validation-error": "3.4.
|
54
|
+
"zod": "^3.24.4",
|
55
|
+
"zod-validation-error": "3.4.1",
|
56
56
|
"tinypool": "^1.0.2"
|
57
57
|
},
|
58
58
|
"dependencies": {
|
59
|
-
"@module-federation/runtime-tools": "0.13.
|
59
|
+
"@module-federation/runtime-tools": "0.13.1",
|
60
60
|
"@rspack/lite-tapable": "1.0.1",
|
61
|
-
"caniuse-lite": "^1.0.
|
62
|
-
"@rspack/binding": "1.3.
|
61
|
+
"caniuse-lite": "^1.0.30001717",
|
62
|
+
"@rspack/binding": "1.3.9"
|
63
63
|
},
|
64
64
|
"peerDependencies": {
|
65
65
|
"@swc/helpers": ">=0.5.1"
|