File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 10
10
import typeof * as FeatureFlagsType from 'shared/ReactFeatureFlags' ;
11
11
import typeof * as ExportsType from './ReactFeatureFlags.native-oss' ;
12
12
13
+ // -----------------------------------------------------------------------------
14
+ // Ready for next major.
15
+ //
16
+ // Alias __NEXT_MAJOR__ to false for easier skimming.
17
+ // -----------------------------------------------------------------------------
18
+ const __NEXT_MAJOR__ = false ;
19
+
13
20
export const debugRenderPhaseSideEffectsForStrictMode = __DEV__ ;
14
21
export const enableDebugTracing = false ;
15
22
export const enableAsyncDebugInfo = false ;
@@ -18,7 +25,7 @@ export const enableProfilerTimer = __PROFILE__;
18
25
export const enableProfilerCommitHooks = __PROFILE__ ;
19
26
export const enableProfilerNestedUpdatePhase = __PROFILE__ ;
20
27
export const enableUpdaterTracking = __PROFILE__ ;
21
- export const enableCache = true ;
28
+ export const enableCache = __NEXT_MAJOR__ ;
22
29
export const enableLegacyCache = false ;
23
30
export const enableCacheElement = true ;
24
31
export const enableFetchInstrumentation = false ;
You can’t perform that action at this time.
0 commit comments