We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a1b5f1 commit 21782c8Copy full SHA for 21782c8
scripts/flow/config/flowconfig
@@ -33,7 +33,6 @@
33
untyped-type-import=error
34
35
[options]
36
-%CI_MAX_WORKERS%
37
munge_underscores=false
38
39
# Substituted by createFlowConfig.js:
scripts/flow/createFlowConfigs.js
@@ -107,11 +107,6 @@ function writeConfig(
107
});
108
109
const config = configTemplate
110
- .replace(
111
- '%CI_MAX_WORKERS%\n',
112
- // On CI, we seem to need to limit workers.
113
- process.env.CI ? 'server.max_workers=4\n' : '',
114
- )
115
.replace('%REACT_RENDERER_FLOW_OPTIONS%', moduleMappings.trim())
116
.replace('%REACT_RENDERER_FLOW_IGNORES%', ignoredPaths.join('\n'))
117
.replace('%FLOW_VERSION%', flowVersion);
0 commit comments