我正在尝试构建我的反应库,但是它在mode: production
上失败。当我将库导入另一个应用程序时,会收到以下消息:
Uncaught TypeError: Cannot set property props of #<TWithProps> which has only a getter
。
其次:
The above error occurred in the <_class3> component
问题是它似乎确实捆绑了我的库,但是在导入捆绑的库时,出现了以上两个错误。 此外,这在开发模式下不会发生。
我尝试遵循许多指南,但是它们都导致相同的结果。我的第一个假设是,这很可能是由于我的最小化插件(我已经尝试过UglifyPlugin
和TerserPlugin
),但事实并非如此。我还阅读了webpack的文档,如果给定的话,它应该使用最小化插件。但是看起来不是吗?
这是我的webpack
module.exports = {
mode: 'production',
entry: {
index: [
'babel-polyfill',
'./src/index.js',
],
},
output: {
path: srcBuild,
filename: '[name].js',
chunkFilename: '[name].[chunkhash].js',
libraryTarget: 'commonjs',
libraryExport: 'default',
},
optimization: {
noEmitOnErrors: true,
minimizer: [
new TerserPlugin({
cache: true,
parallel: true,
sourceMap: true,
terserOptions: {
mangle: false,
compress: {
reduce_funcs: false,
reduce_vars: false,
keep_classnames: true,
keep_fnames: true,
keep_fargs: true,
pure_getters: true,
},
},
}),
],
}
我希望我的库能够像在mode: development
中一样正常运行。
答案 0 :(得分:0)
请问您如何使用其他应用程序的库?您的配置中有libraryTarget: 'commonjs'
。如果您不知道客户将如何使用您的库,建议的选项是通过设置libraryTarget: 'umd'
将导出设置为umd。
这应该允许您使用ES6 import
或仅使用require
,webpack或其他应用程序的捆绑器将负责解决它们。
答案 1 :(得分:0)
通过添加此插件解决了
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production'),
}),