在 ParcelJS 中使用别名
Using alias in ParcelJS
我正在尝试使用 ParcelJs 作为捆绑器将 'react-native' 别名为 'react-native-web'。
在 package.json 中,别名定义为:
"alias": {
"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
所以我通过再次删除 .cache 和 lib 目录以及 运行 parcel src/index.html --open
脚本来让它工作。希望这对某人有所帮助。
我正在尝试使用 ParcelJs 作为捆绑器将 'react-native' 别名为 'react-native-web'。
在 package.json 中,别名定义为:
"alias": { "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
所以我通过再次删除 .cache 和 lib 目录以及 运行 parcel src/index.html --open
脚本来让它工作。希望这对某人有所帮助。