Skip to content

Commit bfb7baf

Browse files
committed
[ci] Update node_modules cache path (facebook#32609)
Alternative of facebook#32604. Bust all old caches since I reverted some other changes to the keys. DiffTrain build for [f3c9560](facebook@f3c9560)
1 parent 8121105 commit bfb7baf

32 files changed

+5780
-4475
lines changed

compiled-rn/VERSION_NATIVE_FB

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
19.1.0-native-fb-a84862db-20250218
1+
19.1.0-native-fb-f3c95600-20250313

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-dev.js

+20-44
Original file line numberDiff line numberDiff line change
@@ -7,34 +7,13 @@
77
* @noflow
88
* @nolint
99
* @preventMunge
10-
* @generated SignedSource<<9ecdf3a3439054092cc9258f7c9f6749>>
10+
* @generated SignedSource<<ac9126715cd49aff3a6fecf8bc198e5f>>
1111
*/
1212

1313
"use strict";
1414
__DEV__ &&
1515
(function () {
1616
function noop() {}
17-
function error(format) {
18-
for (
19-
var _len2 = arguments.length,
20-
args = Array(1 < _len2 ? _len2 - 1 : 0),
21-
_key2 = 1;
22-
_key2 < _len2;
23-
_key2++
24-
)
25-
args[_key2 - 1] = arguments[_key2];
26-
if (enableRemoveConsolePatches) {
27-
var _console2;
28-
(_console2 = console).error.apply(_console2, [format].concat(args));
29-
} else
30-
(_len2 = format),
31-
enableRemoveConsolePatches ||
32-
(ReactSharedInternals.getCurrentStack &&
33-
((_key2 = ReactSharedInternals.getCurrentStack()),
34-
"" !== _key2 && ((_len2 += "%s"), (args = args.concat([_key2])))),
35-
args.unshift(_len2),
36-
Function.prototype.apply.call(console.error, console, args));
37-
}
3817
function testStringCoercion(value) {
3918
return "" + value;
4019
}
@@ -48,7 +27,7 @@ __DEV__ &&
4827
JSCompiler_inline_result = !0;
4928
}
5029
JSCompiler_inline_result &&
51-
(error(
30+
(console.error(
5231
"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",
5332
("function" === typeof Symbol &&
5433
Symbol.toStringTag &&
@@ -95,13 +74,12 @@ __DEV__ &&
9574
function resolveDispatcher() {
9675
var dispatcher = ReactSharedInternals.H;
9776
null === dispatcher &&
98-
error(
77+
console.error(
9978
"Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem."
10079
);
10180
return dispatcher;
10281
}
10382
var React = require("react"),
104-
dynamicFlagsUntyped = require("ReactNativeInternalFeatureFlags"),
10583
Internals = {
10684
d: {
10785
f: noop,
@@ -121,19 +99,17 @@ __DEV__ &&
12199
p: 0,
122100
findDOMNode: null
123101
},
102+
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
124103
ReactSharedInternals =
125-
React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
126-
enableRemoveConsolePatches =
127-
dynamicFlagsUntyped && dynamicFlagsUntyped.enableRemoveConsolePatches,
128-
REACT_PORTAL_TYPE = Symbol.for("react.portal");
104+
React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
129105
("function" === typeof Map &&
130106
null != Map.prototype &&
131107
"function" === typeof Map.prototype.forEach &&
132108
"function" === typeof Set &&
133109
null != Set.prototype &&
134110
"function" === typeof Set.prototype.clear &&
135111
"function" === typeof Set.prototype.forEach) ||
136-
error(
112+
console.error(
137113
"React depends on Map and Set built-in types. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"
138114
);
139115
exports.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
@@ -158,17 +134,17 @@ __DEV__ &&
158134
exports.preconnect = function (href, options) {
159135
"string" === typeof href && href
160136
? null != options && "object" !== typeof options
161-
? error(
137+
? console.error(
162138
"ReactDOM.preconnect(): Expected the `options` argument (second) to be an object but encountered %s instead. The only supported option at this time is `crossOrigin` which accepts a string.",
163139
getValueDescriptorExpectingEnumForWarning(options)
164140
)
165141
: null != options &&
166142
"string" !== typeof options.crossOrigin &&
167-
error(
143+
console.error(
168144
"ReactDOM.preconnect(): Expected the `crossOrigin` option (second argument) to be a string but encountered %s instead. Try removing this option or passing a string value instead.",
169145
getValueDescriptorExpectingObjectForWarning(options.crossOrigin)
170146
)
171-
: error(
147+
: console.error(
172148
"ReactDOM.preconnect(): Expected the `href` argument (first) to be a non-empty string but encountered %s instead.",
173149
getValueDescriptorExpectingObjectForWarning(href)
174150
);
@@ -186,18 +162,18 @@ __DEV__ &&
186162
};
187163
exports.prefetchDNS = function (href) {
188164
if ("string" !== typeof href || !href)
189-
error(
165+
console.error(
190166
"ReactDOM.prefetchDNS(): Expected the `href` argument (first) to be a non-empty string but encountered %s instead.",
191167
getValueDescriptorExpectingObjectForWarning(href)
192168
);
193169
else if (1 < arguments.length) {
194170
var options = arguments[1];
195171
"object" === typeof options && options.hasOwnProperty("crossOrigin")
196-
? error(
172+
? console.error(
197173
"ReactDOM.prefetchDNS(): Expected only one argument, `href`, but encountered %s as a second argument instead. This argument is reserved for future options and is currently disallowed. It looks like the you are attempting to set a crossOrigin property for this DNS lookup hint. Browsers do not perform DNS queries using CORS and setting this attribute on the resource hint has no effect. Try calling ReactDOM.prefetchDNS() with just a single string argument, `href`.",
198174
getValueDescriptorExpectingEnumForWarning(options)
199175
)
200-
: error(
176+
: console.error(
201177
"ReactDOM.prefetchDNS(): Expected only one argument, `href`, but encountered %s as a second argument instead. This argument is reserved for future options and is currently disallowed. Try calling ReactDOM.prefetchDNS() with just a single string argument, `href`.",
202178
getValueDescriptorExpectingEnumForWarning(options)
203179
);
@@ -207,17 +183,17 @@ __DEV__ &&
207183
exports.preinit = function (href, options) {
208184
"string" === typeof href && href
209185
? null == options || "object" !== typeof options
210-
? error(
186+
? console.error(
211187
"ReactDOM.preinit(): Expected the `options` argument (second) to be an object with an `as` property describing the type of resource to be preinitialized but encountered %s instead.",
212188
getValueDescriptorExpectingEnumForWarning(options)
213189
)
214190
: "style" !== options.as &&
215191
"script" !== options.as &&
216-
error(
192+
console.error(
217193
'ReactDOM.preinit(): Expected the `as` property in the `options` argument (second) to contain a valid value describing the type of resource to be preinitialized but encountered %s instead. Valid values for `as` are "style" and "script".',
218194
getValueDescriptorExpectingEnumForWarning(options.as)
219195
)
220-
: error(
196+
: console.error(
221197
"ReactDOM.preinit(): Expected the `href` argument (first) to be a non-empty string but encountered %s instead.",
222198
getValueDescriptorExpectingObjectForWarning(href)
223199
);
@@ -275,7 +251,7 @@ __DEV__ &&
275251
getValueDescriptorExpectingEnumForWarning(options.as) +
276252
".");
277253
if (encountered)
278-
error(
254+
console.error(
279255
"ReactDOM.preinitModule(): Expected up to two arguments, a non-empty `href` string and, optionally, an `options` object with a valid `as` property.%s",
280256
encountered
281257
);
@@ -290,7 +266,7 @@ __DEV__ &&
290266
default:
291267
(encountered =
292268
getValueDescriptorExpectingEnumForWarning(encountered)),
293-
error(
269+
console.error(
294270
'ReactDOM.preinitModule(): Currently the only supported "as" type for this function is "script" but received "%s" instead. This warning was generated for `href` "%s". In the future other module types will be supported, aligning with the import-attributes proposal. Learn more here: (https://github.com/tc39/proposal-import-attributes)',
295271
encountered,
296272
href
@@ -332,7 +308,7 @@ __DEV__ &&
332308
getValueDescriptorExpectingObjectForWarning(options.as) +
333309
".");
334310
encountered &&
335-
error(
311+
console.error(
336312
'ReactDOM.preload(): Expected two arguments, a non-empty `href` string and an `options` object with an `as` property valid for a `<link rel="preload" as="..." />` tag.%s',
337313
encountered
338314
);
@@ -393,7 +369,7 @@ __DEV__ &&
393369
getValueDescriptorExpectingObjectForWarning(options.as) +
394370
".");
395371
encountered &&
396-
error(
372+
console.error(
397373
'ReactDOM.preloadModule(): Expected two arguments, a non-empty `href` string and, optionally, an `options` object with an `as` property valid for a `<link rel="modulepreload" as="..." />` tag.%s',
398374
encountered
399375
);
@@ -428,5 +404,5 @@ __DEV__ &&
428404
exports.useFormStatus = function () {
429405
return resolveDispatcher().useHostTransitionStatus();
430406
};
431-
exports.version = "19.1.0-native-fb-a84862db-20250218";
407+
exports.version = "19.1.0-native-fb-f3c95600-20250313";
432408
})();

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-prod.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @noflow
88
* @nolint
99
* @preventMunge
10-
* @generated SignedSource<<e151d1f167e75c9ef68eb83e92b9b599>>
10+
* @generated SignedSource<<cbbbf01603ef725001744f55ba36e943>>
1111
*/
1212

1313
"use strict";
@@ -203,4 +203,4 @@ exports.useFormState = function (action, initialState, permalink) {
203203
exports.useFormStatus = function () {
204204
return ReactSharedInternals.H.useHostTransitionStatus();
205205
};
206-
exports.version = "19.1.0-native-fb-a84862db-20250218";
206+
exports.version = "19.1.0-native-fb-f3c95600-20250313";

compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-profiling.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @noflow
88
* @nolint
99
* @preventMunge
10-
* @generated SignedSource<<e151d1f167e75c9ef68eb83e92b9b599>>
10+
* @generated SignedSource<<cbbbf01603ef725001744f55ba36e943>>
1111
*/
1212

1313
"use strict";
@@ -203,4 +203,4 @@ exports.useFormState = function (action, initialState, permalink) {
203203
exports.useFormStatus = function () {
204204
return ReactSharedInternals.H.useHostTransitionStatus();
205205
};
206-
exports.version = "19.1.0-native-fb-a84862db-20250218";
206+
exports.version = "19.1.0-native-fb-f3c95600-20250313";

0 commit comments

Comments
 (0)