mirror of
https://github.com/zebrajr/react.git
synced 2026-01-15 12:15:22 +00:00
lunaruan commented 3 days ago • This PR adds separate DevTools feature flag configurations for react-devtools-core. It also breaks the builds down into facebook specific and open source flags so we can experiment in React Native. Tested yarn build:standalone, yarn build:backend, yarn build:standalone:fb, and yarn build:backend:fb and inspected the output to make sure each package used the correct feature flags (the first two use core-oss and the latter two use fb-oss.
43 lines
1.0 KiB
JavaScript
43 lines
1.0 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
*/
|
|
|
|
const {resolve} = require('path');
|
|
|
|
function resolveFeatureFlags(target) {
|
|
let flagsPath;
|
|
switch (target) {
|
|
case 'inline':
|
|
case 'shell':
|
|
flagsPath = 'DevToolsFeatureFlags.default';
|
|
break;
|
|
case 'core/backend-oss':
|
|
case 'core/standalone-oss':
|
|
flagsPath = 'DevToolsFeatureFlags.core-oss';
|
|
break;
|
|
case 'core/backend-fb':
|
|
case 'core/standalone-fb':
|
|
flagsPath = 'DevToolsFeatureFlags.core-fb';
|
|
break;
|
|
case 'extension-oss':
|
|
flagsPath = 'DevToolsFeatureFlags.extension-oss';
|
|
break;
|
|
case 'extension-fb':
|
|
flagsPath = 'DevToolsFeatureFlags.extension-fb';
|
|
break;
|
|
default:
|
|
console.error(`Invalid target "${target}"`);
|
|
process.exit(1);
|
|
}
|
|
|
|
return resolve(__dirname, 'src/config/', flagsPath);
|
|
}
|
|
|
|
module.exports = {
|
|
resolveFeatureFlags,
|
|
};
|