Skip to content

Commit 30682a0

Browse files
committed
move devtools notify to different channel (facebook#34476)
DiffTrain build for [8a8e9a7](facebook@8a8e9a7)
1 parent d815aef commit 30682a0

34 files changed

+1402
-1008
lines changed

compiled/facebook-www/REVISION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0e10ee906e3ea55e4d717d4db498e1159235b06b
1+
8a8e9a7edf16fabc1335c9910bddfef66737ee4e
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0e10ee906e3ea55e4d717d4db498e1159235b06b
1+
8a8e9a7edf16fabc1335c9910bddfef66737ee4e

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -932,6 +932,7 @@ __DEV__ &&
932932
var getCurrentStack = ReactSharedInternals.getCurrentStack;
933933
return null === getCurrentStack ? null : getCurrentStack();
934934
};
935+
exports.Activity = REACT_ACTIVITY_TYPE;
935936
exports.Children = deprecatedAPIs;
936937
exports.Component = Component;
937938
exports.Fragment = REACT_FRAGMENT_TYPE;
@@ -1418,7 +1419,7 @@ __DEV__ &&
14181419
exports.useTransition = function () {
14191420
return resolveDispatcher().useTransition();
14201421
};
1421-
exports.version = "19.2.0-www-classic-0e10ee90-20250912";
1422+
exports.version = "19.2.0-www-classic-8a8e9a7e-20250912";
14221423
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
14231424
"function" ===
14241425
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -932,6 +932,7 @@ __DEV__ &&
932932
var getCurrentStack = ReactSharedInternals.getCurrentStack;
933933
return null === getCurrentStack ? null : getCurrentStack();
934934
};
935+
exports.Activity = REACT_ACTIVITY_TYPE;
935936
exports.Children = deprecatedAPIs;
936937
exports.Component = Component;
937938
exports.Fragment = REACT_FRAGMENT_TYPE;
@@ -1418,7 +1419,7 @@ __DEV__ &&
14181419
exports.useTransition = function () {
14191420
return resolveDispatcher().useTransition();
14201421
};
1421-
exports.version = "19.2.0-www-modern-0e10ee90-20250912";
1422+
exports.version = "19.2.0-www-modern-8a8e9a7e-20250912";
14221423
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
14231424
"function" ===
14241425
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 36 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -377,40 +377,42 @@ function addTransitionType(type) {
377377
} else startTransition(addTransitionType.bind(null, type));
378378
}
379379
}
380-
var ReactCompilerRuntime = { __proto__: null, c: useMemoCache };
381-
exports.Children = {
382-
map: mapChildren,
383-
forEach: function (children, forEachFunc, forEachContext) {
384-
mapChildren(
385-
children,
386-
function () {
387-
forEachFunc.apply(this, arguments);
388-
},
389-
forEachContext
390-
);
391-
},
392-
count: function (children) {
393-
var n = 0;
394-
mapChildren(children, function () {
395-
n++;
396-
});
397-
return n;
398-
},
399-
toArray: function (children) {
400-
return (
401-
mapChildren(children, function (child) {
402-
return child;
403-
}) || []
404-
);
405-
},
406-
only: function (children) {
407-
if (!isValidElement(children))
408-
throw Error(
409-
"React.Children.only expected to receive a single React element child."
380+
var ReactCompilerRuntime = { __proto__: null, c: useMemoCache },
381+
Children = {
382+
map: mapChildren,
383+
forEach: function (children, forEachFunc, forEachContext) {
384+
mapChildren(
385+
children,
386+
function () {
387+
forEachFunc.apply(this, arguments);
388+
},
389+
forEachContext
410390
);
411-
return children;
412-
}
413-
};
391+
},
392+
count: function (children) {
393+
var n = 0;
394+
mapChildren(children, function () {
395+
n++;
396+
});
397+
return n;
398+
},
399+
toArray: function (children) {
400+
return (
401+
mapChildren(children, function (child) {
402+
return child;
403+
}) || []
404+
);
405+
},
406+
only: function (children) {
407+
if (!isValidElement(children))
408+
throw Error(
409+
"React.Children.only expected to receive a single React element child."
410+
);
411+
return children;
412+
}
413+
};
414+
exports.Activity = REACT_ACTIVITY_TYPE;
415+
exports.Children = Children;
414416
exports.Component = Component;
415417
exports.Fragment = REACT_FRAGMENT_TYPE;
416418
exports.Profiler = REACT_PROFILER_TYPE;
@@ -600,4 +602,4 @@ exports.useSyncExternalStore = function (
600602
exports.useTransition = function () {
601603
return ReactSharedInternals.H.useTransition();
602604
};
603-
exports.version = "19.2.0-www-classic-0e10ee90-20250912";
605+
exports.version = "19.2.0-www-classic-8a8e9a7e-20250912";

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

Lines changed: 36 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -377,40 +377,42 @@ function addTransitionType(type) {
377377
} else startTransition(addTransitionType.bind(null, type));
378378
}
379379
}
380-
var ReactCompilerRuntime = { __proto__: null, c: useMemoCache };
381-
exports.Children = {
382-
map: mapChildren,
383-
forEach: function (children, forEachFunc, forEachContext) {
384-
mapChildren(
385-
children,
386-
function () {
387-
forEachFunc.apply(this, arguments);
388-
},
389-
forEachContext
390-
);
391-
},
392-
count: function (children) {
393-
var n = 0;
394-
mapChildren(children, function () {
395-
n++;
396-
});
397-
return n;
398-
},
399-
toArray: function (children) {
400-
return (
401-
mapChildren(children, function (child) {
402-
return child;
403-
}) || []
404-
);
405-
},
406-
only: function (children) {
407-
if (!isValidElement(children))
408-
throw Error(
409-
"React.Children.only expected to receive a single React element child."
380+
var ReactCompilerRuntime = { __proto__: null, c: useMemoCache },
381+
Children = {
382+
map: mapChildren,
383+
forEach: function (children, forEachFunc, forEachContext) {
384+
mapChildren(
385+
children,
386+
function () {
387+
forEachFunc.apply(this, arguments);
388+
},
389+
forEachContext
410390
);
411-
return children;
412-
}
413-
};
391+
},
392+
count: function (children) {
393+
var n = 0;
394+
mapChildren(children, function () {
395+
n++;
396+
});
397+
return n;
398+
},
399+
toArray: function (children) {
400+
return (
401+
mapChildren(children, function (child) {
402+
return child;
403+
}) || []
404+
);
405+
},
406+
only: function (children) {
407+
if (!isValidElement(children))
408+
throw Error(
409+
"React.Children.only expected to receive a single React element child."
410+
);
411+
return children;
412+
}
413+
};
414+
exports.Activity = REACT_ACTIVITY_TYPE;
415+
exports.Children = Children;
414416
exports.Component = Component;
415417
exports.Fragment = REACT_FRAGMENT_TYPE;
416418
exports.Profiler = REACT_PROFILER_TYPE;
@@ -600,4 +602,4 @@ exports.useSyncExternalStore = function (
600602
exports.useTransition = function () {
601603
return ReactSharedInternals.H.useTransition();
602604
};
603-
exports.version = "19.2.0-www-modern-0e10ee90-20250912";
605+
exports.version = "19.2.0-www-modern-8a8e9a7e-20250912";

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

Lines changed: 36 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -381,40 +381,42 @@ function addTransitionType(type) {
381381
} else startTransition(addTransitionType.bind(null, type));
382382
}
383383
}
384-
var ReactCompilerRuntime = { __proto__: null, c: useMemoCache };
385-
exports.Children = {
386-
map: mapChildren,
387-
forEach: function (children, forEachFunc, forEachContext) {
388-
mapChildren(
389-
children,
390-
function () {
391-
forEachFunc.apply(this, arguments);
392-
},
393-
forEachContext
394-
);
395-
},
396-
count: function (children) {
397-
var n = 0;
398-
mapChildren(children, function () {
399-
n++;
400-
});
401-
return n;
402-
},
403-
toArray: function (children) {
404-
return (
405-
mapChildren(children, function (child) {
406-
return child;
407-
}) || []
408-
);
409-
},
410-
only: function (children) {
411-
if (!isValidElement(children))
412-
throw Error(
413-
"React.Children.only expected to receive a single React element child."
384+
var ReactCompilerRuntime = { __proto__: null, c: useMemoCache },
385+
Children = {
386+
map: mapChildren,
387+
forEach: function (children, forEachFunc, forEachContext) {
388+
mapChildren(
389+
children,
390+
function () {
391+
forEachFunc.apply(this, arguments);
392+
},
393+
forEachContext
414394
);
415-
return children;
416-
}
417-
};
395+
},
396+
count: function (children) {
397+
var n = 0;
398+
mapChildren(children, function () {
399+
n++;
400+
});
401+
return n;
402+
},
403+
toArray: function (children) {
404+
return (
405+
mapChildren(children, function (child) {
406+
return child;
407+
}) || []
408+
);
409+
},
410+
only: function (children) {
411+
if (!isValidElement(children))
412+
throw Error(
413+
"React.Children.only expected to receive a single React element child."
414+
);
415+
return children;
416+
}
417+
};
418+
exports.Activity = REACT_ACTIVITY_TYPE;
419+
exports.Children = Children;
418420
exports.Component = Component;
419421
exports.Fragment = REACT_FRAGMENT_TYPE;
420422
exports.Profiler = REACT_PROFILER_TYPE;
@@ -604,7 +606,7 @@ exports.useSyncExternalStore = function (
604606
exports.useTransition = function () {
605607
return ReactSharedInternals.H.useTransition();
606608
};
607-
exports.version = "19.2.0-www-classic-0e10ee90-20250912";
609+
exports.version = "19.2.0-www-classic-8a8e9a7e-20250912";
608610
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
609611
"function" ===
610612
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 36 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -381,40 +381,42 @@ function addTransitionType(type) {
381381
} else startTransition(addTransitionType.bind(null, type));
382382
}
383383
}
384-
var ReactCompilerRuntime = { __proto__: null, c: useMemoCache };
385-
exports.Children = {
386-
map: mapChildren,
387-
forEach: function (children, forEachFunc, forEachContext) {
388-
mapChildren(
389-
children,
390-
function () {
391-
forEachFunc.apply(this, arguments);
392-
},
393-
forEachContext
394-
);
395-
},
396-
count: function (children) {
397-
var n = 0;
398-
mapChildren(children, function () {
399-
n++;
400-
});
401-
return n;
402-
},
403-
toArray: function (children) {
404-
return (
405-
mapChildren(children, function (child) {
406-
return child;
407-
}) || []
408-
);
409-
},
410-
only: function (children) {
411-
if (!isValidElement(children))
412-
throw Error(
413-
"React.Children.only expected to receive a single React element child."
384+
var ReactCompilerRuntime = { __proto__: null, c: useMemoCache },
385+
Children = {
386+
map: mapChildren,
387+
forEach: function (children, forEachFunc, forEachContext) {
388+
mapChildren(
389+
children,
390+
function () {
391+
forEachFunc.apply(this, arguments);
392+
},
393+
forEachContext
414394
);
415-
return children;
416-
}
417-
};
395+
},
396+
count: function (children) {
397+
var n = 0;
398+
mapChildren(children, function () {
399+
n++;
400+
});
401+
return n;
402+
},
403+
toArray: function (children) {
404+
return (
405+
mapChildren(children, function (child) {
406+
return child;
407+
}) || []
408+
);
409+
},
410+
only: function (children) {
411+
if (!isValidElement(children))
412+
throw Error(
413+
"React.Children.only expected to receive a single React element child."
414+
);
415+
return children;
416+
}
417+
};
418+
exports.Activity = REACT_ACTIVITY_TYPE;
419+
exports.Children = Children;
418420
exports.Component = Component;
419421
exports.Fragment = REACT_FRAGMENT_TYPE;
420422
exports.Profiler = REACT_PROFILER_TYPE;
@@ -604,7 +606,7 @@ exports.useSyncExternalStore = function (
604606
exports.useTransition = function () {
605607
return ReactSharedInternals.H.useTransition();
606608
};
607-
exports.version = "19.2.0-www-modern-0e10ee90-20250912";
609+
exports.version = "19.2.0-www-modern-8a8e9a7e-20250912";
608610
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
609611
"function" ===
610612
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

0 commit comments

Comments
 (0)