我正在尝试使用ParcelJs作为捆绑器将'react-native-web'别名为'react-native-web'。
在package.json中,别名定义为:
“别名”:{ “ react-native”:“ react-native-web” }
在运行项目时,会产生以下错误。
$ parcel src/Index.html --open
Server running at http://localhost:1234
/Users/prisc_000/Downloads/parcel-bundler-reason-react-native-web/node_modules/bs-react-native/src/components/view.js:5:26: Cannot resolve dependency 'react-native'
3 |
4 | var ReasonReact = require("reason-react/src/ReasonReact.js");
> 5 | var ReactNative = require("react-native");
| ^
6 | var Props$BsReactNative = require("../private/props.js");
7 |
8 | function CreateComponent(Impl) {
^C
如何正确设置别名?谢谢。
示例回购:https://github.com/idkjs/parcel-bundler-reason-react-native-web/tree/react-native-web
答案 0 :(得分:1)
因此,我通过删除.cache和lib目录并再次运行parcel src/index.html --open
脚本来使其工作。希望这对某人有帮助。