Skip to content

Commit 8116347

Browse files
authored
add enableTransitionTracing feature flag (#23079)
This PR adds the enableTransitionTracing feature flag
1 parent fe905f1 commit 8116347

9 files changed

+18
-0
lines changed

packages/shared/ReactFeatureFlags.js

+2
Original file line numberDiff line numberDiff line change
@@ -194,3 +194,5 @@ export const consoleManagedByDevToolsDuringStrictMode = true;
194194

195195
// Only enabled in www builds
196196
export const enableUseMutableSource = false;
197+
198+
export const enableTransitionTracing = false;

packages/shared/forks/ReactFeatureFlags.native-fb.js

+2
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ export const enableCustomElementPropertySupport = false;
7777
export const consoleManagedByDevToolsDuringStrictMode = false;
7878
export const enableUseMutableSource = true;
7979

80+
export const enableTransitionTracing = false;
81+
8082
// Flow magic to verify the exports of this file match the original version.
8183
// eslint-disable-next-line no-unused-vars
8284
type Check<_X, Y: _X, X: Y = _X> = null;

packages/shared/forks/ReactFeatureFlags.native-oss.js

+2
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ export const enableCustomElementPropertySupport = false;
6969
export const consoleManagedByDevToolsDuringStrictMode = false;
7070
export const enableUseMutableSource = false;
7171

72+
export const enableTransitionTracing = false;
73+
7274
// Flow magic to verify the exports of this file match the original version.
7375
// eslint-disable-next-line no-unused-vars
7476
type Check<_X, Y: _X, X: Y = _X> = null;

packages/shared/forks/ReactFeatureFlags.test-renderer.js

+2
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ export const enableCustomElementPropertySupport = false;
6969
export const consoleManagedByDevToolsDuringStrictMode = false;
7070
export const enableUseMutableSource = false;
7171

72+
export const enableTransitionTracing = false;
73+
7274
// Flow magic to verify the exports of this file match the original version.
7375
// eslint-disable-next-line no-unused-vars
7476
type Check<_X, Y: _X, X: Y = _X> = null;

packages/shared/forks/ReactFeatureFlags.test-renderer.native.js

+2
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ export const enablePersistentOffscreenHostContainer = false;
6767
export const consoleManagedByDevToolsDuringStrictMode = false;
6868
export const enableUseMutableSource = false;
6969

70+
export const enableTransitionTracing = false;
71+
7072
// Flow magic to verify the exports of this file match the original version.
7173
// eslint-disable-next-line no-unused-vars
7274
type Check<_X, Y: _X, X: Y = _X> = null;

packages/shared/forks/ReactFeatureFlags.test-renderer.www.js

+2
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ export const consoleManagedByDevToolsDuringStrictMode = false;
7171
// Some www surfaces are still using this. Remove once they have been migrated.
7272
export const enableUseMutableSource = true;
7373

74+
export const enableTransitionTracing = false;
75+
7476
// Flow magic to verify the exports of this file match the original version.
7577
// eslint-disable-next-line no-unused-vars
7678
type Check<_X, Y: _X, X: Y = _X> = null;

packages/shared/forks/ReactFeatureFlags.testing.js

+2
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ export const enableCustomElementPropertySupport = false;
6969
export const consoleManagedByDevToolsDuringStrictMode = false;
7070
export const enableUseMutableSource = false;
7171

72+
export const enableTransitionTracing = false;
73+
7274
// Flow magic to verify the exports of this file match the original version.
7375
// eslint-disable-next-line no-unused-vars
7476
type Check<_X, Y: _X, X: Y = _X> = null;

packages/shared/forks/ReactFeatureFlags.testing.www.js

+2
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ export const consoleManagedByDevToolsDuringStrictMode = false;
7171
// Some www surfaces are still using this. Remove once they have been migrated.
7272
export const enableUseMutableSource = true;
7373

74+
export const enableTransitionTracing = false;
75+
7476
// Flow magic to verify the exports of this file match the original version.
7577
// eslint-disable-next-line no-unused-vars
7678
type Check<_X, Y: _X, X: Y = _X> = null;

packages/shared/forks/ReactFeatureFlags.www.js

+2
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@ export const enableUseMutableSource = true;
106106

107107
export const enableCustomElementPropertySupport = __EXPERIMENTAL__;
108108

109+
export const enableTransitionTracing = false;
110+
109111
// Flow magic to verify the exports of this file match the original version.
110112
// eslint-disable-next-line no-unused-vars
111113
type Check<_X, Y: _X, X: Y = _X> = null;

0 commit comments

Comments
 (0)