Skip to content

Commit 7841d06

Browse files
author
Brian Vaughn
authored
Enable the updater-tracking feature flag in more builds (#21567)
1 parent 6405efc commit 7841d06

4 files changed

+3
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const enableProfilerTimer = __PROFILE__;
1717
export const enableProfilerCommitHooks = __PROFILE__;
1818
export const enableProfilerNestedUpdatePhase = __PROFILE__;
1919
export const enableProfilerNestedUpdateScheduledHook = false;
20-
export const enableUpdaterTracking = false;
20+
export const enableUpdaterTracking = __PROFILE__;
2121
export const enableSuspenseServerRenderer = false;
2222
export const enableSelectiveHydration = false;
2323
export const enableLazyElements = false;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const enableProfilerTimer = __PROFILE__;
1919
export const enableProfilerCommitHooks = __PROFILE__;
2020
export const enableProfilerNestedUpdatePhase = __PROFILE__;
2121
export const enableProfilerNestedUpdateScheduledHook = false;
22-
export const enableUpdaterTracking = false;
22+
export const enableUpdaterTracking = __PROFILE__;
2323
export const enableSuspenseServerRenderer = false;
2424
export const enableSelectiveHydration = false;
2525
export const enableLazyElements = false;

packages/shared/forks/ReactFeatureFlags.www-dynamic.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ export const enableSuspenseLayoutEffectSemantics = __VARIANT__;
2525
//
2626
// NOTE: This feature will only work in DEV mode; all callsites are wrapped with __DEV__.
2727
export const enableDebugTracing = __EXPERIMENTAL__;
28-
export const enableUpdaterTracking = false;
2928

3029
export const enableSchedulingProfiler = __VARIANT__;
3130

packages/shared/forks/ReactFeatureFlags.www.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ export const enableProfilerCommitHooks = __PROFILE__;
4545
export const enableProfilerNestedUpdatePhase = __PROFILE__;
4646
export const enableProfilerNestedUpdateScheduledHook =
4747
__PROFILE__ && dynamicFeatureFlags.enableProfilerNestedUpdateScheduledHook;
48-
export const enableUpdaterTracking =
49-
__PROFILE__ && dynamicFeatureFlags.enableUpdaterTracking;
48+
export const enableUpdaterTracking = __PROFILE__;
5049

5150
// Logs additional User Timing API marks for use with an experimental profiling tool.
5251
export const enableSchedulingProfiler =

0 commit comments

Comments
 (0)