@rspack/binding 1.7.10 → 1.7.11
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 +34 -1
- package/package.json +11 -11
package/napi-binding.d.ts
CHANGED
|
@@ -1077,6 +1077,30 @@ export interface JsRsdoctorChunkModules {
|
|
|
1077
1077
|
modules: Array<number>
|
|
1078
1078
|
}
|
|
1079
1079
|
|
|
1080
|
+
export interface JsRsdoctorConnection {
|
|
1081
|
+
ukey: number
|
|
1082
|
+
dependencyId: string
|
|
1083
|
+
module: number
|
|
1084
|
+
originModule?: number
|
|
1085
|
+
resolvedModule: number
|
|
1086
|
+
dependencyType: string
|
|
1087
|
+
userRequest: string
|
|
1088
|
+
loc?: string
|
|
1089
|
+
active: boolean
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
export interface JsRsdoctorConnectionsOnlyImport {
|
|
1093
|
+
moduleUkey: number
|
|
1094
|
+
modulePath: string
|
|
1095
|
+
connections: Array<JsRsdoctorConnectionsOnlyImportConnection>
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
export interface JsRsdoctorConnectionsOnlyImportConnection {
|
|
1099
|
+
originModule?: number
|
|
1100
|
+
dependencyType: string
|
|
1101
|
+
userRequest: string
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1080
1104
|
export interface JsRsdoctorDependency {
|
|
1081
1105
|
ukey: number
|
|
1082
1106
|
kind: string
|
|
@@ -1102,7 +1126,6 @@ export interface JsRsdoctorExportInfo {
|
|
|
1102
1126
|
from?: number
|
|
1103
1127
|
variable?: number
|
|
1104
1128
|
identifier?: JsRsdoctorStatement
|
|
1105
|
-
sideEffects: Array<number>
|
|
1106
1129
|
}
|
|
1107
1130
|
|
|
1108
1131
|
export interface JsRsdoctorJsonModuleSize {
|
|
@@ -1124,12 +1147,15 @@ export interface JsRsdoctorModule {
|
|
|
1124
1147
|
chunks: Array<number>
|
|
1125
1148
|
issuerPath: Array<number>
|
|
1126
1149
|
bailoutReason: Array<string>
|
|
1150
|
+
sideEffectsLocations: Array<JsRsdoctorSideEffectLocation>
|
|
1151
|
+
exportsType: string
|
|
1127
1152
|
}
|
|
1128
1153
|
|
|
1129
1154
|
export interface JsRsdoctorModuleGraph {
|
|
1130
1155
|
modules: Array<JsRsdoctorModule>
|
|
1131
1156
|
dependencies: Array<JsRsdoctorDependency>
|
|
1132
1157
|
chunkModules: Array<JsRsdoctorChunkModules>
|
|
1158
|
+
connectionsOnlyImports: Array<JsRsdoctorConnectionsOnlyImport>
|
|
1133
1159
|
}
|
|
1134
1160
|
|
|
1135
1161
|
export interface JsRsdoctorModuleGraphModule {
|
|
@@ -1173,6 +1199,13 @@ export interface JsRsdoctorSideEffect {
|
|
|
1173
1199
|
variable?: number
|
|
1174
1200
|
}
|
|
1175
1201
|
|
|
1202
|
+
export interface JsRsdoctorSideEffectLocation {
|
|
1203
|
+
location: string
|
|
1204
|
+
nodeType: string
|
|
1205
|
+
module: number
|
|
1206
|
+
request: string
|
|
1207
|
+
}
|
|
1208
|
+
|
|
1176
1209
|
export interface JsRsdoctorSourceMapFeatures {
|
|
1177
1210
|
cheap?: boolean
|
|
1178
1211
|
module?: boolean
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rspack/binding",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.11",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Node binding for rspack",
|
|
6
6
|
"main": "binding.js",
|
|
@@ -50,16 +50,16 @@
|
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
"optionalDependencies": {
|
|
53
|
-
"@rspack/binding-darwin-arm64": "1.7.
|
|
54
|
-
"@rspack/binding-win32-arm64-msvc": "1.7.
|
|
55
|
-
"@rspack/binding-linux-arm64-
|
|
56
|
-
"@rspack/binding-linux-arm64-
|
|
57
|
-
"@rspack/binding-
|
|
58
|
-
"@rspack/binding-
|
|
59
|
-
"@rspack/binding-win32-x64-msvc": "1.7.
|
|
60
|
-
"@rspack/binding-
|
|
61
|
-
"@rspack/binding-
|
|
62
|
-
"@rspack/binding-linux-x64-musl": "1.7.
|
|
53
|
+
"@rspack/binding-darwin-arm64": "1.7.11",
|
|
54
|
+
"@rspack/binding-win32-arm64-msvc": "1.7.11",
|
|
55
|
+
"@rspack/binding-linux-arm64-musl": "1.7.11",
|
|
56
|
+
"@rspack/binding-linux-arm64-gnu": "1.7.11",
|
|
57
|
+
"@rspack/binding-win32-ia32-msvc": "1.7.11",
|
|
58
|
+
"@rspack/binding-darwin-x64": "1.7.11",
|
|
59
|
+
"@rspack/binding-win32-x64-msvc": "1.7.11",
|
|
60
|
+
"@rspack/binding-wasm32-wasi": "1.7.11",
|
|
61
|
+
"@rspack/binding-linux-x64-gnu": "1.7.11",
|
|
62
|
+
"@rspack/binding-linux-x64-musl": "1.7.11"
|
|
63
63
|
},
|
|
64
64
|
"scripts": {
|
|
65
65
|
"build:dev": "node scripts/build.js",
|