Summary: Fixes required to be able to run Flipper in node.js: * Adds checks if the `window`-object exists before using it, to allow running in node. * Imports from within Flipper should directly reference the file they are requiring instead of `import from 'flipper'`. This was done in most of the places. Fixed a few occurrences where this wasn't the case. This is to prevent cyclic dependencies in node. * shared packages (React, ReactDOM and Flipper) were exposed on the `window` before, changed this to `global` as this works in browser and node. * Adds some missing methods to our electron stubs (used for testing and headless Flipper) Reviewed By: passy Differential Revision: D13786577 fbshipit-source-id: 145d560f1446e7d0bdec2acd8dd54dae983d7b36
89 lines
1.5 KiB
JavaScript
89 lines
1.5 KiB
JavaScript
/**
|
|
* 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
|
|
*/
|
|
|
|
const BUILTINS = [
|
|
'electron',
|
|
'buffer',
|
|
'child_process',
|
|
'crypto',
|
|
'dgram',
|
|
'dns',
|
|
'fs',
|
|
'http',
|
|
'https',
|
|
'net',
|
|
'os',
|
|
'readline',
|
|
'stream',
|
|
'string_decoder',
|
|
'tls',
|
|
'tty',
|
|
'zlib',
|
|
'constants',
|
|
'events',
|
|
'url',
|
|
'assert',
|
|
'util',
|
|
'path',
|
|
'perf_hooks',
|
|
'punycode',
|
|
'querystring',
|
|
'cluster',
|
|
'console',
|
|
'module',
|
|
'process',
|
|
'vm',
|
|
'domain',
|
|
'v8',
|
|
'repl',
|
|
'timers',
|
|
];
|
|
|
|
const IGNORED_MODULES = [
|
|
'bufferutil',
|
|
'utf-8-validate',
|
|
'spawn-sync',
|
|
'./src/logcat',
|
|
'./src/monkey',
|
|
'./src/adb',
|
|
];
|
|
|
|
function isRequire(node) {
|
|
return (
|
|
node.type === 'CallExpression' &&
|
|
node.callee.type === 'Identifier' &&
|
|
node.callee.name === 'require' &&
|
|
node.arguments.length === 1 &&
|
|
node.arguments[0].type === 'StringLiteral'
|
|
);
|
|
}
|
|
|
|
module.exports = function(babel) {
|
|
const t = babel.types;
|
|
|
|
return {
|
|
name: 'infinity-import-react',
|
|
visitor: {
|
|
CallExpression(path) {
|
|
if (!isRequire(path.node)) {
|
|
return;
|
|
}
|
|
|
|
const source = path.node.arguments[0].value;
|
|
|
|
if (BUILTINS.includes(source)) {
|
|
path.node.callee.name = 'electronRequire';
|
|
}
|
|
|
|
if (IGNORED_MODULES.includes(source)) {
|
|
path.replaceWith(t.identifier('triggerReferenceError'));
|
|
}
|
|
},
|
|
},
|
|
};
|
|
};
|