我目前正在构建一个 React 组件库并将其与 Webpack 4 捆绑在一起。
从构建库的包到在 npm 注册表上发布它,一切都很好。
但是,我无法在其他 React 应用程序中导入它的任何组件并在运行时收到此错误消息:
元素类型无效:应为字符串(对于内置组件)或类/函数(对于复合组件)但得到:未定义。您可能忘记从定义组件的文件中导出组件,或者您可能混淆了默认导入和命名导入。
这是相关的代码:
我的组件库中的一个哑组件:
button/index.js
import React from "react";
const Button = () => <button>Foobar</button>;
export { Button };
我的图书馆的主要入口点index.js
:
import { Button } from "./src/components/Button";
export { Button };
我的 Webpack 配置webpack.config.js
:
const path = require("path");
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
module.exports = {
entry: "./index.js",
plugins: [new CleanWebpackPlugin()],
module: {
rules: [
{
test: /\.m?js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader"
}
}
]
},
output: {
filename: "index.js",
path: path.resolve(__dirname, "dist"),
libraryTarget: "commonjs",
library: ""
}
};
最后,在另一个应用程序中导入这个组件:
import { Button } from "my-design-system";
我想我的 Webpack 配置中遗漏了一些东西,或者其中一个属性可能有问题,但是在阅读了多篇文章和教程之后,我不知道是哪一个。