@rspack/core 1.2.7-alpha.0 → 1.2.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.
- package/compiled/@swc/types/index.d.ts +9 -2
- package/compiled/@swc/types/package.json +1 -1
- package/dist/Compilation.d.ts +2 -3
- package/dist/Compiler.d.ts +5 -1
- package/dist/DependenciesBlock.d.ts +1 -2
- package/dist/Entrypoint.d.ts +1 -0
- package/dist/Module.d.ts +2 -3
- package/dist/ModuleGraph.d.ts +2 -2
- package/dist/ModuleGraphConnection.d.ts +1 -2
- package/dist/MultiCompiler.d.ts +8 -1
- package/dist/builtin-plugin/EntryPlugin.d.ts +1 -4
- package/dist/builtin-plugin/ModuleInfoHeaderPlugin.d.ts +10 -0
- package/dist/builtin-plugin/html-plugin/options.d.ts +4 -1
- package/dist/builtin-plugin/index.d.ts +1 -0
- package/dist/builtin-plugin/lazy-compilation/backend.d.ts +16 -19
- package/dist/config/zod.d.ts +30 -30
- package/dist/exports.d.ts +1 -0
- package/dist/index.js +221 -252
- package/package.json +6 -6
- package/dist/Dependency.d.ts +0 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rspack/core",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.8",
|
|
4
4
|
"webpackVersion": "5.75.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "The fast Rust-based web bundler with webpack-compatible API",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@swc/core": "1.10.18",
|
|
41
|
-
"@swc/types": "0.1.
|
|
41
|
+
"@swc/types": "0.1.19",
|
|
42
42
|
"@types/graceful-fs": "4.1.9",
|
|
43
43
|
"@types/watchpack": "^2.4.4",
|
|
44
44
|
"@types/webpack-sources": "3.2.3",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"json-parse-even-better-errors": "^3.0.2",
|
|
50
50
|
"prebundle": "^1.2.7",
|
|
51
51
|
"tsc-alias": "^1.8.11",
|
|
52
|
-
"tsup": "^8.
|
|
52
|
+
"tsup": "^8.4.0",
|
|
53
53
|
"tsx": "^4.19.3",
|
|
54
54
|
"typescript": "^5.7.3",
|
|
55
55
|
"watchpack": "^2.4.2",
|
|
@@ -57,13 +57,13 @@
|
|
|
57
57
|
"webpack-sources": "3.2.3",
|
|
58
58
|
"zod": "^3.24.2",
|
|
59
59
|
"zod-validation-error": "3.4.0",
|
|
60
|
-
"@rspack/tracing": "1.2.
|
|
60
|
+
"@rspack/tracing": "1.2.8"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"@module-federation/runtime-tools": "0.8.4",
|
|
64
64
|
"@rspack/lite-tapable": "1.0.1",
|
|
65
|
-
"caniuse-lite": "^1.0.
|
|
66
|
-
"@rspack/binding": "1.2.
|
|
65
|
+
"caniuse-lite": "^1.0.30001702",
|
|
66
|
+
"@rspack/binding": "1.2.8"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
69
69
|
"@rspack/tracing": "^1.x",
|
package/dist/Dependency.d.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import type { JsDependency } from "@rspack/binding";
|
|
2
|
-
export declare class Dependency {
|
|
3
|
-
#private;
|
|
4
|
-
readonly type: string;
|
|
5
|
-
readonly category: string;
|
|
6
|
-
readonly request: string | undefined;
|
|
7
|
-
critical: boolean;
|
|
8
|
-
static __from_binding(binding: JsDependency): Dependency;
|
|
9
|
-
static __to_binding(data: Dependency): JsDependency;
|
|
10
|
-
private constructor();
|
|
11
|
-
get ids(): string[] | undefined;
|
|
12
|
-
}
|