We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
最近在写一个React组件库,遇到了这么一个问题:
这个组件库my-components通过peerDependencies依赖了react。
my-components
peerDependencies
react
在一个Example项目(实质是storybook),我通过symlink的方式将my-components作为依赖,并且安装了react,结构如下:
symlink
Example |--node_modules | |--react | |--react-router | |--my-components (通过symlink引入,并且import * as React from 'react') |--src | |--index.js (import 'my-components') |--webpack.config.js
import * as React from 'react'
import 'my-components'
通过webpack运行起来时,提示报错:
ERROR in ../../my-components/index.js Module not found: Error: Can't resolve 'react' in 'xxx/my-components/index.js'
并且,在my-components下,通过npm install react手动安装react时,不会出现错误。所以,几乎可以肯定是引入包时查找的目录除了问题。
npm install react
在github上找到了类似的问题和答案,通过配置webpack.config.js,可以解决这个问题:
webpack.config.js
const path = require('path') module.exports = { // ... resolve: { symlinks: false // 或者 // modules: [path.resolve(__dirname, './node_modules'), 'node_modules'] } // ... }
让依赖引入的查询位置在正确的目录上进行。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
最近在写一个React组件库,遇到了这么一个问题:
这个组件库
my-components
通过peerDependencies
依赖了react
。在一个Example项目(实质是storybook),我通过
symlink
的方式将my-components
作为依赖,并且安装了react
,结构如下:Example
|--node_modules
| |--react
| |--react-router
| |--my-components (通过symlink引入,并且
import * as React from 'react'
)|--src
| |--index.js (
import 'my-components'
)|--webpack.config.js
通过webpack运行起来时,提示报错:
并且,在
my-components
下,通过npm install react
手动安装react
时,不会出现错误。所以,几乎可以肯定是引入包时查找的目录除了问题。在github上找到了类似的问题和答案,通过配置
webpack.config.js
,可以解决这个问题:让依赖引入的查询位置在正确的目录上进行。
The text was updated successfully, but these errors were encountered: