我通过使用
rollup-plugin-commonjs
export default { input: 'src/index.js', output: [ { file: pkg.main, format: 'cjs', sourcemap: true }, { file: pkg.module, format: 'es', sourcemap: true } ], plugins: [ external(), postcss({ modules: true }), url(), babel({ exclude: 'node_modules/**' }), resolve(), commonjs({ include: 'node_modules/**', namedExports: { 'node_modules/react-is/index.js': ['isValidElementType'] } }) ]}
之后,一切正常。
对于信息,我的初始设置是通过https://github.com/transitive-bullshit/react-modern-library-
boilerplate完成的
希望对你有帮助
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)