@rspack-canary/browser 1.6.1-canary-2d78ee6c-20251103173443 → 1.6.1-canary-17ec8965-20251105023104
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.
|
@@ -123,6 +123,7 @@ export interface ExperimentsNormalized {
|
|
|
123
123
|
lazyBarrel?: boolean;
|
|
124
124
|
nativeWatcher?: boolean;
|
|
125
125
|
deferImport?: boolean;
|
|
126
|
+
mfAsyncStartup?: boolean;
|
|
126
127
|
}
|
|
127
128
|
export type IgnoreWarningsNormalized = ((warning: WebpackError, compilation: Compilation) => boolean)[];
|
|
128
129
|
export type OptimizationRuntimeChunkNormalized = false | {
|
package/dist/config/types.d.ts
CHANGED
|
@@ -2156,6 +2156,11 @@ export type Experiments = {
|
|
|
2156
2156
|
* @default false
|
|
2157
2157
|
*/
|
|
2158
2158
|
deferImport?: boolean;
|
|
2159
|
+
/**
|
|
2160
|
+
* Enable async startup for Module Federation
|
|
2161
|
+
* @default false
|
|
2162
|
+
*/
|
|
2163
|
+
mfAsyncStartup?: boolean;
|
|
2159
2164
|
};
|
|
2160
2165
|
export type Watch = boolean;
|
|
2161
2166
|
/** 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.1-canary-
|
|
58129
|
+
D(rspackFuture.bundlerInfo, "version", "1.6.1-canary-17ec8965-20251105023104");
|
|
58130
58130
|
D(rspackFuture.bundlerInfo, "bundler", "rspack");
|
|
58131
58131
|
D(rspackFuture.bundlerInfo, "force", !library);
|
|
58132
58132
|
}
|
|
@@ -59020,7 +59020,8 @@ const getNormalizedRspackOptions = (config)=>({
|
|
|
59020
59020
|
parallelCodeSplitting: experiments.parallelCodeSplitting,
|
|
59021
59021
|
buildHttp: experiments.buildHttp,
|
|
59022
59022
|
parallelLoader: experiments.parallelLoader,
|
|
59023
|
-
useInputFileSystem: experiments.useInputFileSystem
|
|
59023
|
+
useInputFileSystem: experiments.useInputFileSystem,
|
|
59024
|
+
mfAsyncStartup: experiments.mfAsyncStartup ?? false
|
|
59024
59025
|
};
|
|
59025
59026
|
}),
|
|
59026
59027
|
watch: config.watch,
|
|
@@ -62068,7 +62069,7 @@ class MultiStats {
|
|
|
62068
62069
|
return obj;
|
|
62069
62070
|
});
|
|
62070
62071
|
if (childOptions.version) {
|
|
62071
|
-
obj.rspackVersion = "1.6.1-canary-
|
|
62072
|
+
obj.rspackVersion = "1.6.1-canary-17ec8965-20251105023104";
|
|
62072
62073
|
obj.version = "5.75.0";
|
|
62073
62074
|
}
|
|
62074
62075
|
if (childOptions.hash) obj.hash = obj.children.map((j)=>j.hash).join("");
|
|
@@ -63373,7 +63374,7 @@ const SIMPLE_EXTRACTORS = {
|
|
|
63373
63374
|
},
|
|
63374
63375
|
version: (object)=>{
|
|
63375
63376
|
object.version = "5.75.0";
|
|
63376
|
-
object.rspackVersion = "1.6.1-canary-
|
|
63377
|
+
object.rspackVersion = "1.6.1-canary-17ec8965-20251105023104";
|
|
63377
63378
|
},
|
|
63378
63379
|
env: (object, _compilation, _context, { _env })=>{
|
|
63379
63380
|
object.env = _env;
|
|
@@ -66339,7 +66340,7 @@ function transformSync(source, options) {
|
|
|
66339
66340
|
const _options = JSON.stringify(options || {});
|
|
66340
66341
|
return external_rspack_wasi_browser_js_["default"].transformSync(source, _options);
|
|
66341
66342
|
}
|
|
66342
|
-
const exports_rspackVersion = "1.6.1-canary-
|
|
66343
|
+
const exports_rspackVersion = "1.6.1-canary-17ec8965-20251105023104";
|
|
66343
66344
|
const exports_version = "5.75.0";
|
|
66344
66345
|
const exports_WebpackError = Error;
|
|
66345
66346
|
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.1-canary-
|
|
3
|
+
"version": "1.6.1-canary-17ec8965-20251105023104",
|
|
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.",
|