@rspack-canary/browser 1.5.6-canary-54864f9e-20250919065011 → 1.5.6-canary-7c0091e4-20250919173930

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
@@ -47098,7 +47098,7 @@ const applybundlerInfoDefaults = (rspackFuture, library)=>{
47098
47098
  if ("object" == typeof rspackFuture) {
47099
47099
  D(rspackFuture, "bundlerInfo", {});
47100
47100
  if ("object" == typeof rspackFuture.bundlerInfo) {
47101
- D(rspackFuture.bundlerInfo, "version", "1.5.6-canary-54864f9e-20250919065011");
47101
+ D(rspackFuture.bundlerInfo, "version", "1.5.6-canary-7c0091e4-20250919173930");
47102
47102
  D(rspackFuture.bundlerInfo, "bundler", "rspack");
47103
47103
  D(rspackFuture.bundlerInfo, "force", !library);
47104
47104
  }
@@ -51197,7 +51197,7 @@ class MultiStats {
51197
51197
  return obj;
51198
51198
  });
51199
51199
  if (childOptions.version) {
51200
- obj.rspackVersion = "1.5.6-canary-54864f9e-20250919065011";
51200
+ obj.rspackVersion = "1.5.6-canary-7c0091e4-20250919173930";
51201
51201
  obj.version = "5.75.0";
51202
51202
  }
51203
51203
  if (childOptions.hash) obj.hash = obj.children.map((j)=>j.hash).join("");
@@ -51939,9 +51939,6 @@ const mergeToObject = (items)=>{
51939
51939
  for (const item of items)obj[item.name] = item;
51940
51940
  return obj;
51941
51941
  };
51942
- function resolveStatsMillisecond(s) {
51943
- return 1000 * s.secs + s.subsecMillis;
51944
- }
51945
51942
  const errorsSpaceLimit = (errors, max)=>{
51946
51943
  let filtered = 0;
51947
51944
  if (errors.length + 1 >= max) return {
@@ -52507,7 +52504,7 @@ const SIMPLE_EXTRACTORS = {
52507
52504
  },
52508
52505
  version: (object)=>{
52509
52506
  object.version = "5.75.0";
52510
- object.rspackVersion = "1.5.6-canary-54864f9e-20250919065011";
52507
+ object.rspackVersion = "1.5.6-canary-7c0091e4-20250919173930";
52511
52508
  },
52512
52509
  env: (object, _compilation, _context, { _env })=>{
52513
52510
  object.env = _env;
@@ -52808,8 +52805,8 @@ const SIMPLE_EXTRACTORS = {
52808
52805
  },
52809
52806
  profile: {
52810
52807
  _: (object, profile)=>{
52811
- const factory = resolveStatsMillisecond(profile.factory);
52812
- const building = resolveStatsMillisecond(profile.building);
52808
+ const factory = profile.factory;
52809
+ const building = profile.building;
52813
52810
  const statsProfile = {
52814
52811
  total: factory + building,
52815
52812
  resolving: factory,
@@ -56956,7 +56953,7 @@ function transformSync(source, options) {
56956
56953
  const _options = JSON.stringify(options || {});
56957
56954
  return external_rspack_wasi_browser_js_["default"].transformSync(source, _options);
56958
56955
  }
56959
- const exports_rspackVersion = "1.5.6-canary-54864f9e-20250919065011";
56956
+ const exports_rspackVersion = "1.5.6-canary-7c0091e4-20250919173930";
56960
56957
  const exports_version = "5.75.0";
56961
56958
  const exports_WebpackError = Error;
56962
56959
  const sources = __webpack_require__("../../node_modules/.pnpm/webpack-sources@3.3.3_patch_hash=b2a26650f08a2359d0a3cd81fa6fa272aa7441a28dd7e601792da5ed5d2b4aee/node_modules/webpack-sources/lib/index.js");
@@ -1353,11 +1353,6 @@ export interface JsStatsLogging {
1353
1353
  trace?: Array<string>
1354
1354
  }
1355
1355
 
1356
- export interface JsStatsMillisecond {
1357
- secs: number
1358
- subsecMillis: number
1359
- }
1360
-
1361
1356
  export interface JsStatsModule {
1362
1357
  commonAttributes: JsStatsModuleCommonAttributes
1363
1358
  dependent?: boolean
@@ -1402,8 +1397,8 @@ export interface JsStatsModuleIssuer {
1402
1397
  }
1403
1398
 
1404
1399
  export interface JsStatsModuleProfile {
1405
- factory: JsStatsMillisecond
1406
- building: JsStatsMillisecond
1400
+ factory: number
1401
+ building: number
1407
1402
  }
1408
1403
 
1409
1404
  export interface JsStatsModuleReason {
Binary file
@@ -316,7 +316,6 @@ export declare const mergeToObject: (items: {
316
316
  [key: string]: any;
317
317
  name: string;
318
318
  }[]) => Object;
319
- export declare function resolveStatsMillisecond(s: binding.JsStatsMillisecond): number;
320
319
  export declare const errorsSpaceLimit: (errors: StatsError[], max: number) => {
321
320
  errors: StatsError[];
322
321
  filtered: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rspack-canary/browser",
3
- "version": "1.5.6-canary-54864f9e-20250919065011",
3
+ "version": "1.5.6-canary-7c0091e4-20250919173930",
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.",