@rspack-canary/browser 1.6.6-canary-310775e8-20251127083855 → 1.6.6-canary-e2b38893-20251127173453

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.
@@ -256,8 +256,6 @@ export type DevtoolModuleFilenameTemplate = string | ((context: ModuleFilenameTe
256
256
  export type DevtoolFallbackModuleFilenameTemplate = DevtoolModuleFilenameTemplate;
257
257
  /** Tell Rspack what kind of ES-features may be used in the generated runtime-code. */
258
258
  export type Environment = {
259
- /** The environment supports { fn() {} } */
260
- methodShorthand?: boolean;
261
259
  /** The environment supports arrow functions ('() => { ... }'). */
262
260
  arrowFunction?: boolean;
263
261
  /** The environment supports async function and await ('async function () { await ... }'). */
@@ -278,6 +276,8 @@ export type Environment = {
278
276
  forOf?: boolean;
279
277
  /** The environment supports 'globalThis'. */
280
278
  globalThis?: boolean;
279
+ /** The environment supports { fn() {} } */
280
+ methodShorthand?: boolean;
281
281
  /** The environment supports ECMAScript Module syntax to import ECMAScript modules (import ... from '...'). */
282
282
  module?: boolean;
283
283
  /**
package/dist/index.mjs CHANGED
@@ -58190,7 +58190,7 @@ const applybundlerInfoDefaults = (rspackFuture, library)=>{
58190
58190
  if ("object" == typeof rspackFuture) {
58191
58191
  D(rspackFuture, "bundlerInfo", {});
58192
58192
  if ("object" == typeof rspackFuture.bundlerInfo) {
58193
- D(rspackFuture.bundlerInfo, "version", "1.6.6-canary-310775e8-20251127083855");
58193
+ D(rspackFuture.bundlerInfo, "version", "1.6.6-canary-e2b38893-20251127173453");
58194
58194
  D(rspackFuture.bundlerInfo, "bundler", "rspack");
58195
58195
  D(rspackFuture.bundlerInfo, "force", !library);
58196
58196
  }
@@ -62140,7 +62140,7 @@ class MultiStats {
62140
62140
  return obj;
62141
62141
  });
62142
62142
  if (childOptions.version) {
62143
- obj.rspackVersion = "1.6.6-canary-310775e8-20251127083855";
62143
+ obj.rspackVersion = "1.6.6-canary-e2b38893-20251127173453";
62144
62144
  obj.version = "5.75.0";
62145
62145
  }
62146
62146
  if (childOptions.hash) obj.hash = obj.children.map((j)=>j.hash).join("");
@@ -63445,7 +63445,7 @@ const SIMPLE_EXTRACTORS = {
63445
63445
  },
63446
63446
  version: (object)=>{
63447
63447
  object.version = "5.75.0";
63448
- object.rspackVersion = "1.6.6-canary-310775e8-20251127083855";
63448
+ object.rspackVersion = "1.6.6-canary-e2b38893-20251127173453";
63449
63449
  },
63450
63450
  env: (object, _compilation, _context, { _env })=>{
63451
63451
  object.env = _env;
@@ -66582,7 +66582,7 @@ function transformSync(source, options) {
66582
66582
  const _options = JSON.stringify(options || {});
66583
66583
  return external_rspack_wasi_browser_js_["default"].transformSync(source, _options);
66584
66584
  }
66585
- const exports_rspackVersion = "1.6.6-canary-310775e8-20251127083855";
66585
+ const exports_rspackVersion = "1.6.6-canary-e2b38893-20251127173453";
66586
66586
  const exports_version = "5.75.0";
66587
66587
  const exports_WebpackError = Error;
66588
66588
  const sources = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.3_patch_hash=b2a26650f08a2359d0a3cd81fa6fa272aa7441a28dd7e601792da5ed5d2b4aee/node_modules/webpack-sources/lib/index.js");
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rspack-canary/browser",
3
- "version": "1.6.6-canary-310775e8-20251127083855",
3
+ "version": "1.6.6-canary-e2b38893-20251127173453",
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.",