Commit 174d3f1 1 parent fe853ae commit 174d3f1 Copy full SHA for 174d3f1
File tree 1 file changed +2
-12
lines changed
packages/gatsby/src/utils
1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -79,11 +79,7 @@ const activeFlags: Array<IFlag> = [
79
79
telemetryId : `FastDev` ,
80
80
experimental : false ,
81
81
description : `Enable all experiments aimed at improving develop server start time` ,
82
- includedFlags : [
83
- `DEV_SSR` ,
84
- `PRESERVE_FILE_DOWNLOAD_CACHE` ,
85
- `PRESERVE_WEBPACK_CACHE` ,
86
- ] ,
82
+ includedFlags : [ `DEV_SSR` , `PRESERVE_FILE_DOWNLOAD_CACHE` ] ,
87
83
testFitness : ( ) : fitnessEnum => true ,
88
84
} ,
89
85
{
@@ -144,13 +140,7 @@ const activeFlags: Array<IFlag> = [
144
140
experimental : false ,
145
141
description : `Use webpack's persistent caching and don't delete webpack's cache when changing gatsby-node.js & gatsby-config.js files.` ,
146
142
umbrellaIssue : `https://gatsby.dev/cache-clearing-feedback` ,
147
- testFitness : ( ) : fitnessEnum => {
148
- if ( sampleSiteForExperiment ( `PRESERVE_WEBPACK_CACHE` , 20 ) ) {
149
- return `OPT_IN`
150
- } else {
151
- return true
152
- }
153
- } ,
143
+ testFitness : ( ) : fitnessEnum => `LOCKED_IN` ,
154
144
} ,
155
145
{
156
146
name : `PRESERVE_FILE_DOWNLOAD_CACHE` ,
You can’t perform that action at this time.
0 commit comments