Skip to content

Commit c1f7d3e

Browse files
committed
[Runtime] Fix CI (facebook#33999)
DiffTrain build for [19baee8](facebook@19baee8)
1 parent 068107d commit c1f7d3e

35 files changed

+1482
-663
lines changed

compiled/eslint-plugin-react-hooks/index.js

Lines changed: 1308 additions & 537 deletions
Large diffs are not rendered by default.

compiled/facebook-www/REVISION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4f34cc4a2e1198493375867d1876509ae9771aee
1+
19baee813cb08fc5971a3b301814faa6cd530ec8
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4f34cc4a2e1198493375867d1876509ae9771aee
1+
19baee813cb08fc5971a3b301814faa6cd530ec8

compiled/facebook-www/React-dev.classic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1434,7 +1434,7 @@ __DEV__ &&
14341434
exports.useTransition = function () {
14351435
return resolveDispatcher().useTransition();
14361436
};
1437-
exports.version = "19.2.0-www-classic-4f34cc4a-20250724";
1437+
exports.version = "19.2.0-www-classic-19baee81-20250725";
14381438
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
14391439
"function" ===
14401440
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/React-dev.modern.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1434,7 +1434,7 @@ __DEV__ &&
14341434
exports.useTransition = function () {
14351435
return resolveDispatcher().useTransition();
14361436
};
1437-
exports.version = "19.2.0-www-modern-4f34cc4a-20250724";
1437+
exports.version = "19.2.0-www-modern-19baee81-20250725";
14381438
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
14391439
"function" ===
14401440
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/React-prod.classic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -610,4 +610,4 @@ exports.useSyncExternalStore = function (
610610
exports.useTransition = function () {
611611
return ReactSharedInternals.H.useTransition();
612612
};
613-
exports.version = "19.2.0-www-classic-4f34cc4a-20250724";
613+
exports.version = "19.2.0-www-classic-19baee81-20250725";

compiled/facebook-www/React-prod.modern.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -610,4 +610,4 @@ exports.useSyncExternalStore = function (
610610
exports.useTransition = function () {
611611
return ReactSharedInternals.H.useTransition();
612612
};
613-
exports.version = "19.2.0-www-modern-4f34cc4a-20250724";
613+
exports.version = "19.2.0-www-modern-19baee81-20250725";

compiled/facebook-www/React-profiling.classic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ exports.useSyncExternalStore = function (
614614
exports.useTransition = function () {
615615
return ReactSharedInternals.H.useTransition();
616616
};
617-
exports.version = "19.2.0-www-classic-4f34cc4a-20250724";
617+
exports.version = "19.2.0-www-classic-19baee81-20250725";
618618
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
619619
"function" ===
620620
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/React-profiling.modern.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ exports.useSyncExternalStore = function (
614614
exports.useTransition = function () {
615615
return ReactSharedInternals.H.useTransition();
616616
};
617-
exports.version = "19.2.0-www-modern-4f34cc4a-20250724";
617+
exports.version = "19.2.0-www-modern-19baee81-20250725";
618618
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
619619
"function" ===
620620
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactART-dev.classic.js

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1511,7 +1511,7 @@ __DEV__ &&
15111511
selfTime.run(
15121512
performance.measure.bind(
15131513
performance,
1514-
name,
1514+
"\u200b" + name,
15151515
reusableComponentOptions
15161516
)
15171517
);
@@ -1583,8 +1583,10 @@ __DEV__ &&
15831583
}
15841584
};
15851585
debugTask
1586-
? debugTask.run(performance.measure.bind(performance, name, fiber))
1587-
: performance.measure(name, fiber);
1586+
? debugTask.run(
1587+
performance.measure.bind(performance, "\u200b" + name, fiber)
1588+
)
1589+
: performance.measure("\u200b" + name, fiber);
15881590
}
15891591
}
15901592
}
@@ -1623,9 +1625,13 @@ __DEV__ &&
16231625
};
16241626
(fiber = fiber._debugTask)
16251627
? fiber.run(
1626-
performance.measure.bind(performance, name, startTime)
1628+
performance.measure.bind(
1629+
performance,
1630+
"\u200b" + name,
1631+
startTime
1632+
)
16271633
)
1628-
: performance.measure(name, startTime);
1634+
: performance.measure("\u200b" + name, startTime);
16291635
}
16301636
}
16311637
} else
@@ -19299,10 +19305,10 @@ __DEV__ &&
1929919305
(function () {
1930019306
var internals = {
1930119307
bundleType: 1,
19302-
version: "19.2.0-www-classic-4f34cc4a-20250724",
19308+
version: "19.2.0-www-classic-19baee81-20250725",
1930319309
rendererPackageName: "react-art",
1930419310
currentDispatcherRef: ReactSharedInternals,
19305-
reconcilerVersion: "19.2.0-www-classic-4f34cc4a-20250724"
19311+
reconcilerVersion: "19.2.0-www-classic-19baee81-20250725"
1930619312
};
1930719313
internals.overrideHookState = overrideHookState;
1930819314
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -19336,7 +19342,7 @@ __DEV__ &&
1933619342
exports.Shape = Shape;
1933719343
exports.Surface = Surface;
1933819344
exports.Text = Text;
19339-
exports.version = "19.2.0-www-classic-4f34cc4a-20250724";
19345+
exports.version = "19.2.0-www-classic-19baee81-20250725";
1934019346
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1934119347
"function" ===
1934219348
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

0 commit comments

Comments
 (0)