react-server-dom-turbopack 19.3.0-canary-58bdc0bb-20251019 → 19.3.0-canary-f6a48828-20251019

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.
@@ -2670,6 +2670,7 @@
2670
2670
  findSourceMapURL,
2671
2671
  replayConsole,
2672
2672
  environmentName,
2673
+ debugStartTime,
2673
2674
  debugChannel
2674
2675
  ) {
2675
2676
  var chunks = new Map();
@@ -2701,7 +2702,8 @@
2701
2702
  (this._debugRootTask = console.createTask(
2702
2703
  '"use ' + environmentName.toLowerCase() + '"'
2703
2704
  ));
2704
- this._debugStartTime = performance.now();
2705
+ this._debugStartTime =
2706
+ null == debugStartTime ? performance.now() : debugStartTime;
2705
2707
  this._debugIOStarted = !1;
2706
2708
  setTimeout(markIOStarted.bind(this), 0);
2707
2709
  this._debugFindSourceMapURL = findSourceMapURL;
@@ -4559,6 +4561,7 @@
4559
4561
  options && options.findSourceMapURL ? options.findSourceMapURL : void 0,
4560
4562
  options ? !1 !== options.replayConsoleLogs : !0,
4561
4563
  options && options.environmentName ? options.environmentName : void 0,
4564
+ options && null != options.startTime ? options.startTime : void 0,
4562
4565
  debugChannel
4563
4566
  )._weakResponse;
4564
4567
  }
@@ -4906,10 +4909,10 @@
4906
4909
  return hook.checkDCE ? !0 : !1;
4907
4910
  })({
4908
4911
  bundleType: 1,
4909
- version: "19.3.0-canary-58bdc0bb-20251019",
4912
+ version: "19.3.0-canary-f6a48828-20251019",
4910
4913
  rendererPackageName: "react-server-dom-turbopack",
4911
4914
  currentDispatcherRef: ReactSharedInternals,
4912
- reconcilerVersion: "19.3.0-canary-58bdc0bb-20251019",
4915
+ reconcilerVersion: "19.3.0-canary-f6a48828-20251019",
4913
4916
  getCurrentComponentInfo: function () {
4914
4917
  return currentOwnerInDEV;
4915
4918
  }
@@ -2832,6 +2832,7 @@
2832
2832
  findSourceMapURL,
2833
2833
  replayConsole,
2834
2834
  environmentName,
2835
+ debugStartTime,
2835
2836
  debugChannel
2836
2837
  ) {
2837
2838
  var chunks = new Map();
@@ -2863,7 +2864,8 @@
2863
2864
  (this._debugRootTask = console.createTask(
2864
2865
  '"use ' + environmentName.toLowerCase() + '"'
2865
2866
  ));
2866
- this._debugStartTime = performance.now();
2867
+ this._debugStartTime =
2868
+ null == debugStartTime ? performance.now() : debugStartTime;
2867
2869
  this._debugIOStarted = !1;
2868
2870
  setTimeout(markIOStarted.bind(this), 0);
2869
2871
  this._debugFindSourceMapURL = findSourceMapURL;
@@ -4593,6 +4595,7 @@
4593
4595
  options && options.findSourceMapURL ? options.findSourceMapURL : void 0,
4594
4596
  options ? !0 === options.replayConsoleLogs : !1,
4595
4597
  options && options.environmentName ? options.environmentName : void 0,
4598
+ options && null != options.startTime ? options.startTime : void 0,
4596
4599
  options && void 0 !== options.debugChannel
4597
4600
  ? {
4598
4601
  hasReadable: void 0 !== options.debugChannel.readable,
@@ -2832,6 +2832,7 @@
2832
2832
  findSourceMapURL,
2833
2833
  replayConsole,
2834
2834
  environmentName,
2835
+ debugStartTime,
2835
2836
  debugChannel
2836
2837
  ) {
2837
2838
  var chunks = new Map();
@@ -2863,7 +2864,8 @@
2863
2864
  (this._debugRootTask = console.createTask(
2864
2865
  '"use ' + environmentName.toLowerCase() + '"'
2865
2866
  ));
2866
- this._debugStartTime = performance.now();
2867
+ this._debugStartTime =
2868
+ null == debugStartTime ? performance.now() : debugStartTime;
2867
2869
  this._debugIOStarted = !1;
2868
2870
  setTimeout(markIOStarted.bind(this), 0);
2869
2871
  this._debugFindSourceMapURL = findSourceMapURL;
@@ -4708,6 +4710,7 @@
4708
4710
  options && options.findSourceMapURL ? options.findSourceMapURL : void 0,
4709
4711
  options ? !0 === options.replayConsoleLogs : !1,
4710
4712
  options && options.environmentName ? options.environmentName : void 0,
4713
+ options && null != options.startTime ? options.startTime : void 0,
4711
4714
  options && void 0 !== options.debugChannel
4712
4715
  ? {
4713
4716
  hasReadable: void 0 !== options.debugChannel.readable,
@@ -5089,6 +5092,7 @@
5089
5092
  options && options.findSourceMapURL ? options.findSourceMapURL : void 0,
5090
5093
  options ? !0 === options.replayConsoleLogs : !1,
5091
5094
  options && options.environmentName ? options.environmentName : void 0,
5095
+ options && null != options.startTime ? options.startTime : void 0,
5092
5096
  options && void 0 !== options.debugChannel
5093
5097
  ? {
5094
5098
  hasReadable: void 0 !== options.debugChannel.readable,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-server-dom-turbopack",
3
3
  "description": "React Server Components bindings for DOM using Turbopack. This is intended to be integrated into meta-frameworks. It is not intended to be imported directly.",
4
- "version": "19.3.0-canary-58bdc0bb-20251019",
4
+ "version": "19.3.0-canary-f6a48828-20251019",
5
5
  "keywords": [
6
6
  "react"
7
7
  ],
@@ -78,8 +78,8 @@
78
78
  "node": ">=0.10.0"
79
79
  },
80
80
  "peerDependencies": {
81
- "react": "19.3.0-canary-58bdc0bb-20251019",
82
- "react-dom": "19.3.0-canary-58bdc0bb-20251019"
81
+ "react": "19.3.0-canary-f6a48828-20251019",
82
+ "react-dom": "19.3.0-canary-f6a48828-20251019"
83
83
  },
84
84
  "dependencies": {
85
85
  "acorn-loose": "^8.3.0",