@rspack/binding 2.0.5 → 2.0.6
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 +10 -1
- package/package.json +11 -11
package/napi-binding.d.ts
CHANGED
|
@@ -334,7 +334,7 @@ export declare class JsCompilation {
|
|
|
334
334
|
}
|
|
335
335
|
|
|
336
336
|
export declare class JsCompiler {
|
|
337
|
-
constructor(compilerPath: string, options: RawOptions, builtinPlugins:
|
|
337
|
+
constructor(compilerPath: string, options: RawOptions, builtinPlugins: BuiltinPlugin[], registerJsTaps: RegisterJsTaps, outputFilesystem: ThreadsafeNodeFS, intermediateFilesystem: ThreadsafeNodeFS | undefined | null, inputFilesystem: ThreadsafeNodeFS | undefined | null, resolverFactoryReference: JsResolverFactory, unsafeFastDrop: boolean, platform: RawCompilerPlatform)
|
|
338
338
|
setNonSkippableRegisters(kinds: Array<RegisterJsTapKind>): void
|
|
339
339
|
/** Build with the given option passed to the constructor */
|
|
340
340
|
build(callback: (err: null | Error) => void): void
|
|
@@ -2156,6 +2156,15 @@ export interface RawCssParserOptions {
|
|
|
2156
2156
|
dashedIdents?: boolean
|
|
2157
2157
|
}
|
|
2158
2158
|
|
|
2159
|
+
export interface RawDeterministicModuleIdsPluginOptions {
|
|
2160
|
+
context?: string
|
|
2161
|
+
test?: (module: Module) => boolean
|
|
2162
|
+
maxLength?: number
|
|
2163
|
+
salt?: number
|
|
2164
|
+
fixedLength?: boolean
|
|
2165
|
+
failOnConflict?: boolean
|
|
2166
|
+
}
|
|
2167
|
+
|
|
2159
2168
|
export interface RawDllEntryPluginOptions {
|
|
2160
2169
|
context: string
|
|
2161
2170
|
entries: Array<string>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rspack/binding",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Node binding for rspack",
|
|
6
6
|
"main": "binding.js",
|
|
@@ -54,16 +54,16 @@
|
|
|
54
54
|
}
|
|
55
55
|
},
|
|
56
56
|
"optionalDependencies": {
|
|
57
|
-
"@rspack/binding-darwin-arm64": "2.0.
|
|
58
|
-
"@rspack/binding-linux-arm64-gnu": "2.0.
|
|
59
|
-
"@rspack/binding-
|
|
60
|
-
"@rspack/binding-
|
|
61
|
-
"@rspack/binding-win32-
|
|
62
|
-
"@rspack/binding-
|
|
63
|
-
"@rspack/binding-
|
|
64
|
-
"@rspack/binding-
|
|
65
|
-
"@rspack/binding-linux-x64-gnu": "2.0.
|
|
66
|
-
"@rspack/binding-linux-x64-musl": "2.0.
|
|
57
|
+
"@rspack/binding-darwin-arm64": "2.0.6",
|
|
58
|
+
"@rspack/binding-linux-arm64-gnu": "2.0.6",
|
|
59
|
+
"@rspack/binding-win32-arm64-msvc": "2.0.6",
|
|
60
|
+
"@rspack/binding-linux-arm64-musl": "2.0.6",
|
|
61
|
+
"@rspack/binding-win32-ia32-msvc": "2.0.6",
|
|
62
|
+
"@rspack/binding-wasm32-wasi": "2.0.6",
|
|
63
|
+
"@rspack/binding-darwin-x64": "2.0.6",
|
|
64
|
+
"@rspack/binding-win32-x64-msvc": "2.0.6",
|
|
65
|
+
"@rspack/binding-linux-x64-gnu": "2.0.6",
|
|
66
|
+
"@rspack/binding-linux-x64-musl": "2.0.6"
|
|
67
67
|
},
|
|
68
68
|
"scripts": {
|
|
69
69
|
"build:dev": "node scripts/build.js",
|