Rename package to 'flipper'
Summary: - rename package `'sonar'` > `'flipper'` - rename package `'sonar-static'` > `'flipper-static'` - rename package export from `window.Sonar` to `window.Flipper` Reviewed By: passy Differential Revision: D9851181 fbshipit-source-id: 34d4447c3b287496b3d20ddb54471ce777ec74e1
This commit is contained in:
committed by
Facebook Github Bot
parent
2e2924c979
commit
66e77075be
64
static/transforms/flipper-requires.js
Normal file
64
static/transforms/flipper-requires.js
Normal file
@@ -0,0 +1,64 @@
|
||||
/**
|
||||
* Copyright 2018-present Facebook.
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
* @format
|
||||
*/
|
||||
|
||||
// do not apply this transform for these paths
|
||||
const EXCLUDE_PATHS = [
|
||||
'/node_modules/react-devtools-core/',
|
||||
'relay-devtools/DevtoolsUI',
|
||||
];
|
||||
|
||||
function isExcludedPath(path) {
|
||||
for (const epath of EXCLUDE_PATHS) {
|
||||
if (path.indexOf(epath) > -1) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
} // $FlowFixMe
|
||||
module.exports = ({types: t}) => ({
|
||||
visitor: {
|
||||
// $FlowFixMe
|
||||
CallExpression(path, state) {
|
||||
if (isExcludedPath(state.file.opts.filename)) {
|
||||
return;
|
||||
}
|
||||
const node = path.node;
|
||||
const args = node.arguments || [];
|
||||
if (
|
||||
node.callee.name === 'require' &&
|
||||
args.length === 1 &&
|
||||
t.isStringLiteral(args[0]) &&
|
||||
args[0].value === 'flipper'
|
||||
) {
|
||||
path.replaceWith(t.identifier('window.Flipper'));
|
||||
} else if (
|
||||
node.callee.name === 'require' &&
|
||||
args.length > 0 &&
|
||||
t.isStringLiteral(args[0]) &&
|
||||
args[0].value === 'react'
|
||||
) {
|
||||
path.replaceWith(t.identifier('window.React'));
|
||||
} else if (
|
||||
node.callee.name === 'require' &&
|
||||
args.length > 0 &&
|
||||
t.isStringLiteral(args[0]) &&
|
||||
args[0].value === 'react-dom'
|
||||
) {
|
||||
path.replaceWith(t.identifier('window.ReactDOM'));
|
||||
}
|
||||
},
|
||||
Identifier(path, state) {
|
||||
if (
|
||||
path.node.name === 'React' &&
|
||||
path.parentPath.node.id !== path.node &&
|
||||
!isExcludedPath(state.file.opts.filename)
|
||||
) {
|
||||
path.replaceWith(t.identifier('window.React'));
|
||||
}
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user