@rspack/binding 2.0.0-beta.6 → 2.0.0-beta.7
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/napi-binding.d.ts +14 -1
- package/package.json +12 -12
package/napi-binding.d.ts
CHANGED
|
@@ -1060,6 +1060,7 @@ export interface JsRscClientPluginOptions {
|
|
|
1060
1060
|
export interface JsRscServerPluginOptions {
|
|
1061
1061
|
coordinator: JsCoordinator
|
|
1062
1062
|
onServerComponentChanges?: (() => void) | undefined | null
|
|
1063
|
+
onManifest?: ((arg: string) => Promise<undefined>) | undefined | null
|
|
1063
1064
|
}
|
|
1064
1065
|
|
|
1065
1066
|
export interface JsRsdoctorAsset {
|
|
@@ -1111,6 +1112,18 @@ export interface JsRsdoctorConnection {
|
|
|
1111
1112
|
active: boolean
|
|
1112
1113
|
}
|
|
1113
1114
|
|
|
1115
|
+
export interface JsRsdoctorConnectionsOnlyImport {
|
|
1116
|
+
moduleUkey: number
|
|
1117
|
+
modulePath: string
|
|
1118
|
+
connections: Array<JsRsdoctorConnectionsOnlyImportConnection>
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
export interface JsRsdoctorConnectionsOnlyImportConnection {
|
|
1122
|
+
originModule?: number
|
|
1123
|
+
dependencyType: string
|
|
1124
|
+
userRequest: string
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1114
1127
|
export interface JsRsdoctorDependency {
|
|
1115
1128
|
ukey: number
|
|
1116
1129
|
kind: string
|
|
@@ -1164,6 +1177,7 @@ export interface JsRsdoctorModuleGraph {
|
|
|
1164
1177
|
modules: Array<JsRsdoctorModule>
|
|
1165
1178
|
dependencies: Array<JsRsdoctorDependency>
|
|
1166
1179
|
chunkModules: Array<JsRsdoctorChunkModules>
|
|
1180
|
+
connectionsOnlyImports: Array<JsRsdoctorConnectionsOnlyImport>
|
|
1167
1181
|
}
|
|
1168
1182
|
|
|
1169
1183
|
export interface JsRsdoctorModuleGraphModule {
|
|
@@ -2656,7 +2670,6 @@ export interface RawOccurrenceChunkIdsPluginOptions {
|
|
|
2656
2670
|
}
|
|
2657
2671
|
|
|
2658
2672
|
export interface RawOptimizationOptions {
|
|
2659
|
-
removeAvailableModules: boolean
|
|
2660
2673
|
sideEffects: boolean | string
|
|
2661
2674
|
usedExports: boolean | string
|
|
2662
2675
|
providedExports: boolean
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rspack/binding",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.7",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Node binding for rspack",
|
|
6
6
|
"main": "binding.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@napi-rs/cli": "3.0.4",
|
|
23
23
|
"@napi-rs/wasm-runtime": "1.0.7",
|
|
24
|
-
"emnapi": "
|
|
24
|
+
"emnapi": "1.8.1",
|
|
25
25
|
"typescript": "^5.9.3"
|
|
26
26
|
},
|
|
27
27
|
"napi": {
|
|
@@ -50,16 +50,16 @@
|
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
"optionalDependencies": {
|
|
53
|
-
"@rspack/binding-
|
|
54
|
-
"@rspack/binding-
|
|
55
|
-
"@rspack/binding-
|
|
56
|
-
"@rspack/binding-
|
|
57
|
-
"@rspack/binding-
|
|
58
|
-
"@rspack/binding-
|
|
59
|
-
"@rspack/binding-
|
|
60
|
-
"@rspack/binding-
|
|
61
|
-
"@rspack/binding-linux-x64-
|
|
62
|
-
"@rspack/binding-
|
|
53
|
+
"@rspack/binding-win32-arm64-msvc": "2.0.0-beta.7",
|
|
54
|
+
"@rspack/binding-win32-ia32-msvc": "2.0.0-beta.7",
|
|
55
|
+
"@rspack/binding-linux-arm64-musl": "2.0.0-beta.7",
|
|
56
|
+
"@rspack/binding-wasm32-wasi": "2.0.0-beta.7",
|
|
57
|
+
"@rspack/binding-linux-arm64-gnu": "2.0.0-beta.7",
|
|
58
|
+
"@rspack/binding-darwin-x64": "2.0.0-beta.7",
|
|
59
|
+
"@rspack/binding-win32-x64-msvc": "2.0.0-beta.7",
|
|
60
|
+
"@rspack/binding-linux-x64-gnu": "2.0.0-beta.7",
|
|
61
|
+
"@rspack/binding-linux-x64-musl": "2.0.0-beta.7",
|
|
62
|
+
"@rspack/binding-darwin-arm64": "2.0.0-beta.7"
|
|
63
63
|
},
|
|
64
64
|
"scripts": {
|
|
65
65
|
"build:dev": "node scripts/build.js",
|