Skip to content

Commit 7e3000e

Browse files
committed
Add FB build for ReactReconcilerConstants (#29003)
In order to integrate the `react-reconciler` build created in #28880 with third party libraries, we need to have matching `react-reconciler/constants` to go with it. DiffTrain build for [5d29478](5d29478)
1 parent b76cf7b commit 7e3000e

File tree

5 files changed

+159
-1
lines changed

5 files changed

+159
-1
lines changed

compiled/facebook-www/REVISION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0a0a3af75a740d0920ebf7f4affaf8d1ce8c107f
1+
5d29478716cefbf8290dfdd19129156c2ac75973
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
/**
2+
* Copyright (c) Meta Platforms, Inc. and affiliates.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*
7+
* @noflow
8+
* @nolint
9+
* @preventMunge
10+
* @preserve-invariant-messages
11+
*/
12+
13+
'use strict';
14+
15+
if (__DEV__) {
16+
(function() {
17+
'use strict';
18+
19+
// This refers to a WWW module.
20+
require('warning');
21+
22+
// Re-export dynamic flags from the www version.
23+
require('ReactFeatureFlags');
24+
25+
var NoLane =
26+
/* */
27+
0;
28+
var SyncLane =
29+
/* */
30+
2;
31+
var InputContinuousLane =
32+
/* */
33+
8;
34+
var DefaultLane =
35+
/* */
36+
32;
37+
var IdleLane =
38+
/* */
39+
268435456;
40+
41+
var NoEventPriority = NoLane;
42+
var DiscreteEventPriority = SyncLane;
43+
var ContinuousEventPriority = InputContinuousLane;
44+
var DefaultEventPriority = DefaultLane;
45+
var IdleEventPriority = IdleLane;
46+
47+
var LegacyRoot = 0;
48+
var ConcurrentRoot = 1;
49+
50+
exports.ConcurrentRoot = ConcurrentRoot;
51+
exports.ContinuousEventPriority = ContinuousEventPriority;
52+
exports.DefaultEventPriority = DefaultEventPriority;
53+
exports.DiscreteEventPriority = DiscreteEventPriority;
54+
exports.IdleEventPriority = IdleEventPriority;
55+
exports.LegacyRoot = LegacyRoot;
56+
exports.NoEventPriority = NoEventPriority;
57+
})();
58+
}
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
/**
2+
* Copyright (c) Meta Platforms, Inc. and affiliates.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*
7+
* @noflow
8+
* @nolint
9+
* @preventMunge
10+
* @preserve-invariant-messages
11+
*/
12+
13+
'use strict';
14+
15+
if (__DEV__) {
16+
(function() {
17+
'use strict';
18+
19+
// This refers to a WWW module.
20+
require('warning');
21+
22+
// Re-export dynamic flags from the www version.
23+
require('ReactFeatureFlags');
24+
25+
var NoLane =
26+
/* */
27+
0;
28+
var SyncLane =
29+
/* */
30+
2;
31+
var InputContinuousLane =
32+
/* */
33+
8;
34+
var DefaultLane =
35+
/* */
36+
32;
37+
var IdleLane =
38+
/* */
39+
268435456;
40+
41+
var NoEventPriority = NoLane;
42+
var DiscreteEventPriority = SyncLane;
43+
var ContinuousEventPriority = InputContinuousLane;
44+
var DefaultEventPriority = DefaultLane;
45+
var IdleEventPriority = IdleLane;
46+
47+
var LegacyRoot = 0;
48+
var ConcurrentRoot = 1;
49+
50+
exports.ConcurrentRoot = ConcurrentRoot;
51+
exports.ContinuousEventPriority = ContinuousEventPriority;
52+
exports.DefaultEventPriority = DefaultEventPriority;
53+
exports.DiscreteEventPriority = DiscreteEventPriority;
54+
exports.IdleEventPriority = IdleEventPriority;
55+
exports.LegacyRoot = LegacyRoot;
56+
exports.NoEventPriority = NoEventPriority;
57+
})();
58+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/**
2+
* Copyright (c) Meta Platforms, Inc. and affiliates.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*
7+
* @noflow
8+
* @nolint
9+
* @preventMunge
10+
* @preserve-invariant-messages
11+
*/
12+
13+
"use strict";
14+
require("ReactFeatureFlags");
15+
exports.ConcurrentRoot = 1;
16+
exports.ContinuousEventPriority = 8;
17+
exports.DefaultEventPriority = 32;
18+
exports.DiscreteEventPriority = 2;
19+
exports.IdleEventPriority = 268435456;
20+
exports.LegacyRoot = 0;
21+
exports.NoEventPriority = 0;
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/**
2+
* Copyright (c) Meta Platforms, Inc. and affiliates.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*
7+
* @noflow
8+
* @nolint
9+
* @preventMunge
10+
* @preserve-invariant-messages
11+
*/
12+
13+
"use strict";
14+
require("ReactFeatureFlags");
15+
exports.ConcurrentRoot = 1;
16+
exports.ContinuousEventPriority = 8;
17+
exports.DefaultEventPriority = 32;
18+
exports.DiscreteEventPriority = 2;
19+
exports.IdleEventPriority = 268435456;
20+
exports.LegacyRoot = 0;
21+
exports.NoEventPriority = 0;

0 commit comments

Comments
 (0)