@rspack/binding 1.5.5 → 1.5.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 +8 -7
- package/package.json +11 -11
package/napi-binding.d.ts
CHANGED
|
@@ -1353,11 +1353,6 @@ export interface JsStatsLogging {
|
|
|
1353
1353
|
trace?: Array<string>
|
|
1354
1354
|
}
|
|
1355
1355
|
|
|
1356
|
-
export interface JsStatsMillisecond {
|
|
1357
|
-
secs: number
|
|
1358
|
-
subsecMillis: number
|
|
1359
|
-
}
|
|
1360
|
-
|
|
1361
1356
|
export interface JsStatsModule {
|
|
1362
1357
|
commonAttributes: JsStatsModuleCommonAttributes
|
|
1363
1358
|
dependent?: boolean
|
|
@@ -1402,8 +1397,8 @@ export interface JsStatsModuleIssuer {
|
|
|
1402
1397
|
}
|
|
1403
1398
|
|
|
1404
1399
|
export interface JsStatsModuleProfile {
|
|
1405
|
-
factory:
|
|
1406
|
-
building:
|
|
1400
|
+
factory: number
|
|
1401
|
+
building: number
|
|
1407
1402
|
}
|
|
1408
1403
|
|
|
1409
1404
|
export interface JsStatsModuleReason {
|
|
@@ -2327,6 +2322,7 @@ export interface RawJavascriptParserOptions {
|
|
|
2327
2322
|
* @experimental
|
|
2328
2323
|
*/
|
|
2329
2324
|
importDynamic?: boolean
|
|
2325
|
+
commonjsMagicComments?: boolean
|
|
2330
2326
|
/**
|
|
2331
2327
|
* This option is experimental in Rspack only and subject to change or be removed anytime.
|
|
2332
2328
|
* @experimental
|
|
@@ -2337,6 +2333,11 @@ export interface RawJavascriptParserOptions {
|
|
|
2337
2333
|
* @experimental
|
|
2338
2334
|
*/
|
|
2339
2335
|
typeReexportsPresence?: string
|
|
2336
|
+
/**
|
|
2337
|
+
* This option is experimental in Rspack only and subject to change or be removed anytime.
|
|
2338
|
+
* @experimental
|
|
2339
|
+
*/
|
|
2340
|
+
jsx?: boolean
|
|
2340
2341
|
}
|
|
2341
2342
|
|
|
2342
2343
|
export interface RawJsonGeneratorOptions {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rspack/binding",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.7",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Node binding for rspack",
|
|
6
6
|
"main": "binding.js",
|
|
@@ -51,16 +51,16 @@
|
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
"optionalDependencies": {
|
|
54
|
-
"@rspack/binding-darwin-arm64": "1.5.
|
|
55
|
-
"@rspack/binding-
|
|
56
|
-
"@rspack/binding-linux-arm64-
|
|
57
|
-
"@rspack/binding-
|
|
58
|
-
"@rspack/binding-win32-
|
|
59
|
-
"@rspack/binding-wasm32-wasi": "1.5.
|
|
60
|
-
"@rspack/binding-darwin-x64": "1.5.
|
|
61
|
-
"@rspack/binding-win32-x64-msvc": "1.5.
|
|
62
|
-
"@rspack/binding-linux-x64-gnu": "1.5.
|
|
63
|
-
"@rspack/binding-linux-x64-musl": "1.5.
|
|
54
|
+
"@rspack/binding-darwin-arm64": "1.5.7",
|
|
55
|
+
"@rspack/binding-win32-arm64-msvc": "1.5.7",
|
|
56
|
+
"@rspack/binding-linux-arm64-gnu": "1.5.7",
|
|
57
|
+
"@rspack/binding-linux-arm64-musl": "1.5.7",
|
|
58
|
+
"@rspack/binding-win32-ia32-msvc": "1.5.7",
|
|
59
|
+
"@rspack/binding-wasm32-wasi": "1.5.7",
|
|
60
|
+
"@rspack/binding-darwin-x64": "1.5.7",
|
|
61
|
+
"@rspack/binding-win32-x64-msvc": "1.5.7",
|
|
62
|
+
"@rspack/binding-linux-x64-gnu": "1.5.7",
|
|
63
|
+
"@rspack/binding-linux-x64-musl": "1.5.7"
|
|
64
64
|
},
|
|
65
65
|
"scripts": {
|
|
66
66
|
"build:dev": "node scripts/build.js",
|