amis-rpc-design/node_modules/@react-native-community/cli-config/build/resolveReactNativePath.js
2023-10-07 19:42:30 +08:00

35 lines
952 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = resolveReactNativePath;
function _cliTools() {
const data = require("@react-native-community/cli-tools");
_cliTools = function () {
return data;
};
return data;
}
/**
* Finds path to React Native inside `node_modules` or throws
* an error otherwise.
*/
function resolveReactNativePath(root) {
try {
return (0, _cliTools().resolveNodeModuleDir)(root, 'react-native');
} catch (_ignored) {
throw new (_cliTools().CLIError)(`
Unable to find React Native files looking up from ${root}. Make sure "react-native" module is installed
in your project dependencies.
If you are using React Native from a non-standard location, consider setting:
{
reactNativePath: "./path/to/react-native"
}
in your \`react-native.config.js\`.
`);
}
}
//# sourceMappingURL=resolveReactNativePath.ts.map