@rspack-canary/browser 1.6.2-canary-4e6be088-20251110224718 → 1.6.3-canary-74ea720c-20251112173931
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.
|
@@ -111,6 +111,9 @@ export interface ExperimentsNormalized {
|
|
|
111
111
|
*/
|
|
112
112
|
layers?: boolean;
|
|
113
113
|
incremental?: false | Incremental;
|
|
114
|
+
/**
|
|
115
|
+
* @deprecated This option is deprecated, as it has a huge regression in some edge cases where the chunk graph has lots of cycles. We will improve performance of build_chunk_graph.
|
|
116
|
+
*/
|
|
114
117
|
parallelCodeSplitting?: boolean;
|
|
115
118
|
futureDefaults?: boolean;
|
|
116
119
|
rspackFuture?: RspackFutureOptions;
|
|
@@ -123,7 +126,6 @@ export interface ExperimentsNormalized {
|
|
|
123
126
|
lazyBarrel?: boolean;
|
|
124
127
|
nativeWatcher?: boolean;
|
|
125
128
|
deferImport?: boolean;
|
|
126
|
-
mfAsyncStartup?: boolean;
|
|
127
129
|
}
|
|
128
130
|
export type IgnoreWarningsNormalized = ((warning: WebpackError, compilation: Compilation) => boolean)[];
|
|
129
131
|
export type OptimizationRuntimeChunkNormalized = false | {
|
package/dist/config/types.d.ts
CHANGED
|
@@ -2100,6 +2100,7 @@ export type Experiments = {
|
|
|
2100
2100
|
incremental?: IncrementalPresets | Incremental;
|
|
2101
2101
|
/**
|
|
2102
2102
|
* Enable multi-threaded code splitting algorithm.
|
|
2103
|
+
* @deprecated This option is deprecated, it has a huge regression in some edge cases where the chunk graph has lots of cycles. We'll improve the performance of build_chunk_graph in the future instead
|
|
2103
2104
|
*/
|
|
2104
2105
|
parallelCodeSplitting?: boolean;
|
|
2105
2106
|
/**
|
|
@@ -2156,11 +2157,6 @@ export type Experiments = {
|
|
|
2156
2157
|
* @default false
|
|
2157
2158
|
*/
|
|
2158
2159
|
deferImport?: boolean;
|
|
2159
|
-
/**
|
|
2160
|
-
* Enable async startup for Module Federation
|
|
2161
|
-
* @default false
|
|
2162
|
-
*/
|
|
2163
|
-
mfAsyncStartup?: boolean;
|
|
2164
2160
|
};
|
|
2165
2161
|
export type Watch = boolean;
|
|
2166
2162
|
/** Options for watch mode. */
|
package/dist/index.mjs
CHANGED
|
@@ -58126,7 +58126,7 @@ const applybundlerInfoDefaults = (rspackFuture, library)=>{
|
|
|
58126
58126
|
if ("object" == typeof rspackFuture) {
|
|
58127
58127
|
D(rspackFuture, "bundlerInfo", {});
|
|
58128
58128
|
if ("object" == typeof rspackFuture.bundlerInfo) {
|
|
58129
|
-
D(rspackFuture.bundlerInfo, "version", "1.6.
|
|
58129
|
+
D(rspackFuture.bundlerInfo, "version", "1.6.3-canary-74ea720c-20251112173931");
|
|
58130
58130
|
D(rspackFuture.bundlerInfo, "bundler", "rspack");
|
|
58131
58131
|
D(rspackFuture.bundlerInfo, "force", !library);
|
|
58132
58132
|
}
|
|
@@ -58986,6 +58986,7 @@ const getNormalizedRspackOptions = (config)=>({
|
|
|
58986
58986
|
experiments: nestedConfig(config.experiments, (experiments)=>{
|
|
58987
58987
|
if (experiments.layers) util_default().deprecate(()=>{}, "`experiments.layers` config has been deprecated and will be removed in Rspack v2.0. Feature layers will be always enabled. Please remove this option from your Rspack configuration.")();
|
|
58988
58988
|
if (false === experiments.topLevelAwait) util_default().deprecate(()=>{}, "`experiments.topLevelAwait` config has been deprecated and will be removed in Rspack v2.0. Top-level await will be always enabled. Please remove this option from your Rspack configuration.")();
|
|
58989
|
+
if (experiments.parallelCodeSplitting) util_default().deprecate(()=>{}, "`experiments.parallelCodeSplitting` config has been deprecated and will be removed in next minor. It has huge regression in some edge cases where the chunk graph has lots of cycles, we'll improve the performance of build_chunk_graph in the future instead")();
|
|
58989
58990
|
return {
|
|
58990
58991
|
...experiments,
|
|
58991
58992
|
cache: optionalNestedConfig(experiments.cache, (cache)=>{
|
|
@@ -59020,8 +59021,7 @@ const getNormalizedRspackOptions = (config)=>({
|
|
|
59020
59021
|
parallelCodeSplitting: experiments.parallelCodeSplitting,
|
|
59021
59022
|
buildHttp: experiments.buildHttp,
|
|
59022
59023
|
parallelLoader: experiments.parallelLoader,
|
|
59023
|
-
useInputFileSystem: experiments.useInputFileSystem
|
|
59024
|
-
mfAsyncStartup: experiments.mfAsyncStartup ?? false
|
|
59024
|
+
useInputFileSystem: experiments.useInputFileSystem
|
|
59025
59025
|
};
|
|
59026
59026
|
}),
|
|
59027
59027
|
watch: config.watch,
|
|
@@ -62075,7 +62075,7 @@ class MultiStats {
|
|
|
62075
62075
|
return obj;
|
|
62076
62076
|
});
|
|
62077
62077
|
if (childOptions.version) {
|
|
62078
|
-
obj.rspackVersion = "1.6.
|
|
62078
|
+
obj.rspackVersion = "1.6.3-canary-74ea720c-20251112173931";
|
|
62079
62079
|
obj.version = "5.75.0";
|
|
62080
62080
|
}
|
|
62081
62081
|
if (childOptions.hash) obj.hash = obj.children.map((j)=>j.hash).join("");
|
|
@@ -63380,7 +63380,7 @@ const SIMPLE_EXTRACTORS = {
|
|
|
63380
63380
|
},
|
|
63381
63381
|
version: (object)=>{
|
|
63382
63382
|
object.version = "5.75.0";
|
|
63383
|
-
object.rspackVersion = "1.6.
|
|
63383
|
+
object.rspackVersion = "1.6.3-canary-74ea720c-20251112173931";
|
|
63384
63384
|
},
|
|
63385
63385
|
env: (object, _compilation, _context, { _env })=>{
|
|
63386
63386
|
object.env = _env;
|
|
@@ -66517,7 +66517,7 @@ function transformSync(source, options) {
|
|
|
66517
66517
|
const _options = JSON.stringify(options || {});
|
|
66518
66518
|
return external_rspack_wasi_browser_js_["default"].transformSync(source, _options);
|
|
66519
66519
|
}
|
|
66520
|
-
const exports_rspackVersion = "1.6.
|
|
66520
|
+
const exports_rspackVersion = "1.6.3-canary-74ea720c-20251112173931";
|
|
66521
66521
|
const exports_version = "5.75.0";
|
|
66522
66522
|
const exports_WebpackError = Error;
|
|
66523
66523
|
const sources = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.3_patch_hash=b2a26650f08a2359d0a3cd81fa6fa272aa7441a28dd7e601792da5ed5d2b4aee/node_modules/webpack-sources/lib/index.js");
|
package/dist/napi-binding.d.ts
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rspack-canary/browser",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.3-canary-74ea720c-20251112173931",
|
|
4
4
|
"webpackVersion": "5.75.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Rspack for running in the browser. This is still in early stage and may not follow the semver.",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@napi-rs/wasm-runtime": "1.0.7",
|
|
34
|
-
"@rspack/lite-tapable": "1.0
|
|
34
|
+
"@rspack/lite-tapable": "1.1.0",
|
|
35
35
|
"@swc/types": "0.1.25",
|
|
36
36
|
"@types/watchpack": "^2.4.4",
|
|
37
37
|
"memfs": "4.48.1",
|