汇总错误:node_modulesreact

汇总错误:node_modulesreact,第1张

汇总错误:node_modules / react

我通过使用

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
完成的

希望对你有帮助



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4893732.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存