@rspack/binding 1.4.9 → 1.4.10
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 +1 -12
- package/package.json +11 -11
package/napi-binding.d.ts
CHANGED
|
@@ -615,17 +615,6 @@ export interface JsAfterEmitData {
|
|
|
615
615
|
uid?: number
|
|
616
616
|
}
|
|
617
617
|
|
|
618
|
-
export interface JsAfterResolveData {
|
|
619
|
-
request: string
|
|
620
|
-
context: string
|
|
621
|
-
issuer: string
|
|
622
|
-
issuerLayer?: string
|
|
623
|
-
fileDependencies: Array<string>
|
|
624
|
-
contextDependencies: Array<string>
|
|
625
|
-
missingDependencies: Array<string>
|
|
626
|
-
createData?: JsCreateData
|
|
627
|
-
}
|
|
628
|
-
|
|
629
618
|
export interface JsAfterTemplateExecutionData {
|
|
630
619
|
html: string
|
|
631
620
|
headTags: Array<JsHtmlPluginTag>
|
|
@@ -2734,7 +2723,7 @@ export interface RegisterJsTaps {
|
|
|
2734
2723
|
registerNormalModuleFactoryFactorizeTaps: (stages: Array<number>) => Array<{ function: ((arg: JsFactorizeArgs) => Promise<JsFactorizeArgs>); stage: number; }>
|
|
2735
2724
|
registerNormalModuleFactoryResolveTaps: (stages: Array<number>) => Array<{ function: ((arg: JsResolveArgs) => Promise<JsResolveArgs>); stage: number; }>
|
|
2736
2725
|
registerNormalModuleFactoryResolveForSchemeTaps: (stages: Array<number>) => Array<{ function: ((arg: JsResolveForSchemeArgs) => Promise<[boolean | undefined, JsResolveForSchemeArgs]>); stage: number; }>
|
|
2737
|
-
registerNormalModuleFactoryAfterResolveTaps: (stages: Array<number>) => Array<{ function: ((arg:
|
|
2726
|
+
registerNormalModuleFactoryAfterResolveTaps: (stages: Array<number>) => Array<{ function: ((arg: string) => Promise<[boolean | undefined, JsCreateData | undefined]>); stage: number; }>
|
|
2738
2727
|
registerNormalModuleFactoryCreateModuleTaps: (stages: Array<number>) => Array<{ function: ((arg: JsNormalModuleFactoryCreateModuleArgs) => Promise<void>); stage: number; }>
|
|
2739
2728
|
registerContextModuleFactoryBeforeResolveTaps: (stages: Array<number>) => Array<{ function: ((arg: false | JsContextModuleFactoryBeforeResolveData) => Promise<false | JsContextModuleFactoryBeforeResolveData>); stage: number; }>
|
|
2740
2729
|
registerContextModuleFactoryAfterResolveTaps: (stages: Array<number>) => Array<{ function: ((arg: false | JsContextModuleFactoryAfterResolveData) => Promise<false | JsContextModuleFactoryAfterResolveData>); stage: number; }>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rspack/binding",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.10",
|
|
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-
|
|
54
|
-
"@rspack/binding-
|
|
55
|
-
"@rspack/binding-
|
|
56
|
-
"@rspack/binding-
|
|
57
|
-
"@rspack/binding-
|
|
58
|
-
"@rspack/binding-
|
|
59
|
-
"@rspack/binding-
|
|
60
|
-
"@rspack/binding-linux-x64-
|
|
61
|
-
"@rspack/binding-
|
|
62
|
-
"@rspack/binding-
|
|
53
|
+
"@rspack/binding-linux-arm64-gnu": "1.4.10",
|
|
54
|
+
"@rspack/binding-darwin-arm64": "1.4.10",
|
|
55
|
+
"@rspack/binding-win32-arm64-msvc": "1.4.10",
|
|
56
|
+
"@rspack/binding-win32-ia32-msvc": "1.4.10",
|
|
57
|
+
"@rspack/binding-darwin-x64": "1.4.10",
|
|
58
|
+
"@rspack/binding-linux-arm64-musl": "1.4.10",
|
|
59
|
+
"@rspack/binding-win32-x64-msvc": "1.4.10",
|
|
60
|
+
"@rspack/binding-linux-x64-gnu": "1.4.10",
|
|
61
|
+
"@rspack/binding-linux-x64-musl": "1.4.10",
|
|
62
|
+
"@rspack/binding-wasm32-wasi": "1.4.10"
|
|
63
63
|
},
|
|
64
64
|
"scripts": {
|
|
65
65
|
"build:dev": "node scripts/build.js",
|