@rspack-canary/browser 1.6.7-canary-ceb43c53-20251208173610 → 1.6.8-canary-a3066402-20251209142350

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/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.7-canary-ceb43c53-20251208173610");
58193
+ D(rspackFuture.bundlerInfo, "version", "1.6.8-canary-a3066402-20251209142350");
58194
58194
  D(rspackFuture.bundlerInfo, "bundler", "rspack");
58195
58195
  D(rspackFuture.bundlerInfo, "force", !library);
58196
58196
  }
@@ -62336,7 +62336,7 @@ class MultiStats {
62336
62336
  return obj;
62337
62337
  });
62338
62338
  if (childOptions.version) {
62339
- obj.rspackVersion = "1.6.7-canary-ceb43c53-20251208173610";
62339
+ obj.rspackVersion = "1.6.8-canary-a3066402-20251209142350";
62340
62340
  obj.version = "5.75.0";
62341
62341
  }
62342
62342
  if (childOptions.hash) obj.hash = obj.children.map((j)=>j.hash).join("");
@@ -63612,10 +63612,15 @@ const SIMPLE_EXTRACTORS = {
63612
63612
  if (depthInCollapsedGroup > 0) depthInCollapsedGroup--;
63613
63613
  continue;
63614
63614
  }
63615
- const message = entry.args?.length ? util.format(entry.args[0], ...entry.args.slice(1)) : "";
63615
+ let message;
63616
+ if (entry.type === LogType.time) {
63617
+ const [label, first, second] = entry.args;
63618
+ if ("number" == typeof first && "number" == typeof second) message = `${label}: ${1000 * first + second / 1000000} ms`;
63619
+ }
63620
+ if (!message) message = entry.args?.length ? util.format(entry.args[0], ...entry.args.slice(1)) : "";
63616
63621
  const newEntry = {
63617
63622
  type,
63618
- message,
63623
+ message: message || "",
63619
63624
  trace: loggingTrace ? entry.trace : void 0,
63620
63625
  children: type === LogType.group || type === LogType.groupCollapsed ? [] : void 0
63621
63626
  };
@@ -63641,7 +63646,7 @@ const SIMPLE_EXTRACTORS = {
63641
63646
  },
63642
63647
  version: (object)=>{
63643
63648
  object.version = "5.75.0";
63644
- object.rspackVersion = "1.6.7-canary-ceb43c53-20251208173610";
63649
+ object.rspackVersion = "1.6.8-canary-a3066402-20251209142350";
63645
63650
  },
63646
63651
  env: (object, _compilation, _context, { _env })=>{
63647
63652
  object.env = _env;
@@ -66778,7 +66783,7 @@ function transformSync(source, options) {
66778
66783
  const _options = JSON.stringify(options || {});
66779
66784
  return external_rspack_wasi_browser_js_["default"].transformSync(source, _options);
66780
66785
  }
66781
- const exports_rspackVersion = "1.6.7-canary-ceb43c53-20251208173610";
66786
+ const exports_rspackVersion = "1.6.8-canary-a3066402-20251209142350";
66782
66787
  const exports_version = "5.75.0";
66783
66788
  const exports_WebpackError = Error;
66784
66789
  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.7-canary-ceb43c53-20251208173610",
3
+ "version": "1.6.8-canary-a3066402-20251209142350",
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.",