mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Enable the updater-tracking feature flag in more builds (#21567)
This commit is contained in:
@@ -17,7 +17,7 @@ export const enableProfilerTimer = __PROFILE__;
|
||||
export const enableProfilerCommitHooks = __PROFILE__;
|
||||
export const enableProfilerNestedUpdatePhase = __PROFILE__;
|
||||
export const enableProfilerNestedUpdateScheduledHook = false;
|
||||
export const enableUpdaterTracking = false;
|
||||
export const enableUpdaterTracking = __PROFILE__;
|
||||
export const enableSuspenseServerRenderer = false;
|
||||
export const enableSelectiveHydration = false;
|
||||
export const enableLazyElements = false;
|
||||
|
||||
@@ -19,7 +19,7 @@ export const enableProfilerTimer = __PROFILE__;
|
||||
export const enableProfilerCommitHooks = __PROFILE__;
|
||||
export const enableProfilerNestedUpdatePhase = __PROFILE__;
|
||||
export const enableProfilerNestedUpdateScheduledHook = false;
|
||||
export const enableUpdaterTracking = false;
|
||||
export const enableUpdaterTracking = __PROFILE__;
|
||||
export const enableSuspenseServerRenderer = false;
|
||||
export const enableSelectiveHydration = false;
|
||||
export const enableLazyElements = false;
|
||||
|
||||
@@ -25,7 +25,6 @@ export const enableSuspenseLayoutEffectSemantics = __VARIANT__;
|
||||
//
|
||||
// NOTE: This feature will only work in DEV mode; all callsites are wrapped with __DEV__.
|
||||
export const enableDebugTracing = __EXPERIMENTAL__;
|
||||
export const enableUpdaterTracking = false;
|
||||
|
||||
export const enableSchedulingProfiler = __VARIANT__;
|
||||
|
||||
|
||||
@@ -45,8 +45,7 @@ export const enableProfilerCommitHooks = __PROFILE__;
|
||||
export const enableProfilerNestedUpdatePhase = __PROFILE__;
|
||||
export const enableProfilerNestedUpdateScheduledHook =
|
||||
__PROFILE__ && dynamicFeatureFlags.enableProfilerNestedUpdateScheduledHook;
|
||||
export const enableUpdaterTracking =
|
||||
__PROFILE__ && dynamicFeatureFlags.enableUpdaterTracking;
|
||||
export const enableUpdaterTracking = __PROFILE__;
|
||||
|
||||
// Logs additional User Timing API marks for use with an experimental profiling tool.
|
||||
export const enableSchedulingProfiler =
|
||||
|
||||
Reference in New Issue
Block a user