@rspack-canary/browser 1.6.2-canary-4e6be088-20251110224718 → 1.6.2-canary-f70f8701-20251111081208

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,7 +123,6 @@ export interface ExperimentsNormalized {
123
123
  lazyBarrel?: boolean;
124
124
  nativeWatcher?: boolean;
125
125
  deferImport?: boolean;
126
- mfAsyncStartup?: boolean;
127
126
  }
128
127
  export type IgnoreWarningsNormalized = ((warning: WebpackError, compilation: Compilation) => boolean)[];
129
128
  export type OptimizationRuntimeChunkNormalized = false | {
@@ -2156,11 +2156,6 @@ 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;
2164
2159
  };
2165
2160
  export type Watch = boolean;
2166
2161
  /** 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.2-canary-4e6be088-20251110224718");
58129
+ D(rspackFuture.bundlerInfo, "version", "1.6.2-canary-f70f8701-20251111081208");
58130
58130
  D(rspackFuture.bundlerInfo, "bundler", "rspack");
58131
58131
  D(rspackFuture.bundlerInfo, "force", !library);
58132
58132
  }
@@ -59020,8 +59020,7 @@ const getNormalizedRspackOptions = (config)=>({
59020
59020
  parallelCodeSplitting: experiments.parallelCodeSplitting,
59021
59021
  buildHttp: experiments.buildHttp,
59022
59022
  parallelLoader: experiments.parallelLoader,
59023
- useInputFileSystem: experiments.useInputFileSystem,
59024
- mfAsyncStartup: experiments.mfAsyncStartup ?? false
59023
+ useInputFileSystem: experiments.useInputFileSystem
59025
59024
  };
59026
59025
  }),
59027
59026
  watch: config.watch,
@@ -62075,7 +62074,7 @@ class MultiStats {
62075
62074
  return obj;
62076
62075
  });
62077
62076
  if (childOptions.version) {
62078
- obj.rspackVersion = "1.6.2-canary-4e6be088-20251110224718";
62077
+ obj.rspackVersion = "1.6.2-canary-f70f8701-20251111081208";
62079
62078
  obj.version = "5.75.0";
62080
62079
  }
62081
62080
  if (childOptions.hash) obj.hash = obj.children.map((j)=>j.hash).join("");
@@ -63380,7 +63379,7 @@ const SIMPLE_EXTRACTORS = {
63380
63379
  },
63381
63380
  version: (object)=>{
63382
63381
  object.version = "5.75.0";
63383
- object.rspackVersion = "1.6.2-canary-4e6be088-20251110224718";
63382
+ object.rspackVersion = "1.6.2-canary-f70f8701-20251111081208";
63384
63383
  },
63385
63384
  env: (object, _compilation, _context, { _env })=>{
63386
63385
  object.env = _env;
@@ -66517,7 +66516,7 @@ function transformSync(source, options) {
66517
66516
  const _options = JSON.stringify(options || {});
66518
66517
  return external_rspack_wasi_browser_js_["default"].transformSync(source, _options);
66519
66518
  }
66520
- const exports_rspackVersion = "1.6.2-canary-4e6be088-20251110224718";
66519
+ const exports_rspackVersion = "1.6.2-canary-f70f8701-20251111081208";
66521
66520
  const exports_version = "5.75.0";
66522
66521
  const exports_WebpackError = Error;
66523
66522
  const sources = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.3_patch_hash=b2a26650f08a2359d0a3cd81fa6fa272aa7441a28dd7e601792da5ed5d2b4aee/node_modules/webpack-sources/lib/index.js");
@@ -2124,7 +2124,6 @@ inlineEnum: boolean
2124
2124
  typeReexportsPresence: boolean
2125
2125
  lazyBarrel: boolean
2126
2126
  deferImport: boolean
2127
- mfAsyncStartup: boolean
2128
2127
  }
2129
2128
 
2130
2129
  export interface RawExperimentSnapshotOptions {
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rspack-canary/browser",
3
- "version": "1.6.2-canary-4e6be088-20251110224718",
3
+ "version": "1.6.2-canary-f70f8701-20251111081208",
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.",