@rspack/binding 1.0.6 → 1.0.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/binding.d.ts +12 -1
- package/package.json +10 -10
package/binding.d.ts
CHANGED
|
@@ -1283,6 +1283,7 @@ export interface RawEvalDevToolModulePluginOptions {
|
|
|
1283
1283
|
export interface RawExperiments {
|
|
1284
1284
|
layers: boolean
|
|
1285
1285
|
topLevelAwait: boolean
|
|
1286
|
+
incremental?: RawIncremental
|
|
1286
1287
|
rspackFuture: RawRspackFuture
|
|
1287
1288
|
}
|
|
1288
1289
|
|
|
@@ -1391,6 +1392,16 @@ export interface RawIgnorePluginOptions {
|
|
|
1391
1392
|
checkResource?: (resource: string, context: string) => boolean
|
|
1392
1393
|
}
|
|
1393
1394
|
|
|
1395
|
+
export interface RawIncremental {
|
|
1396
|
+
make: boolean
|
|
1397
|
+
emitAssets: boolean
|
|
1398
|
+
inferAsyncModules: boolean
|
|
1399
|
+
providedExports: boolean
|
|
1400
|
+
moduleHashes: boolean
|
|
1401
|
+
moduleCodegen: boolean
|
|
1402
|
+
moduleRuntimeRequirements: boolean
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1394
1405
|
export interface RawInfo {
|
|
1395
1406
|
immutable?: boolean
|
|
1396
1407
|
minimized?: boolean
|
|
@@ -1748,7 +1759,7 @@ export interface RawResolveTsconfigOptions {
|
|
|
1748
1759
|
}
|
|
1749
1760
|
|
|
1750
1761
|
export interface RawRspackFuture {
|
|
1751
|
-
|
|
1762
|
+
|
|
1752
1763
|
}
|
|
1753
1764
|
|
|
1754
1765
|
export interface RawRuleSetCondition {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rspack/binding",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Node binding for rspack",
|
|
6
6
|
"main": "binding.js",
|
|
@@ -24,15 +24,15 @@
|
|
|
24
24
|
"binaryName": "rspack"
|
|
25
25
|
},
|
|
26
26
|
"optionalDependencies": {
|
|
27
|
-
"@rspack/binding-darwin-arm64": "1.0.
|
|
28
|
-
"@rspack/binding-win32-arm64-msvc": "1.0.
|
|
29
|
-
"@rspack/binding-
|
|
30
|
-
"@rspack/binding-
|
|
31
|
-
"@rspack/binding-
|
|
32
|
-
"@rspack/binding-
|
|
33
|
-
"@rspack/binding-
|
|
34
|
-
"@rspack/binding-
|
|
35
|
-
"@rspack/binding-linux-
|
|
27
|
+
"@rspack/binding-darwin-arm64": "1.0.7",
|
|
28
|
+
"@rspack/binding-win32-arm64-msvc": "1.0.7",
|
|
29
|
+
"@rspack/binding-linux-arm64-musl": "1.0.7",
|
|
30
|
+
"@rspack/binding-win32-ia32-msvc": "1.0.7",
|
|
31
|
+
"@rspack/binding-linux-arm64-gnu": "1.0.7",
|
|
32
|
+
"@rspack/binding-darwin-x64": "1.0.7",
|
|
33
|
+
"@rspack/binding-win32-x64-msvc": "1.0.7",
|
|
34
|
+
"@rspack/binding-linux-x64-musl": "1.0.7",
|
|
35
|
+
"@rspack/binding-linux-x64-gnu": "1.0.7"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build:debug": "node scripts/build.js",
|