汇总错误:node_modules/react-is/index.js 未导出“isValidElementType”

IT技术 reactjs rollup styled-components
2021-05-11 17:07:39

我正在使用样式组件构建一个带有 rollUp 的包。

我的 rollup.config.js 看起来像:

import resolve from 'rollup-plugin-node-resolve'
import babel from 'rollup-plugin-babel'
import commonjs from 'rollup-plugin-commonjs'
export default {
  input: 'src/index.js',
  output: {
    file: 'dist/bundle.js',
    format: 'cjs'
  },
  external: [
    'react',
    'react-proptypes'
  ],
  plugins: [
    resolve({
      extensions: [ '.js', '.json', '.jsx' ]
    }),
    commonjs({
      include: 'node_modules/**'
    }),
    babel({
      exclude: 'node_modules/**'
    })
  ]
}

我收到

[!] Error: 'isValidElementType' is not exported by node_modules/react-is/index.js
https://github.com/rollup/rollup/wiki/Troubleshooting#name-is-not-exported-by-module
node_modules/styled-components/dist/styled-components.es.js (7:9)
5: import stream from 'stream';
6: import PropTypes from 'prop-types';
7: import { isValidElementType } from 'react-is';
            ^
8: import hoistStatics from 'hoist-non-react-statics';

检查 node_modules 本身 react-is 是一个 commonjs module,因为它也可以在这里检查

commonjs 插件不应该处理它,因为它在 node_modules/** 内部吗?

谢谢。

3个回答

我通过使用解决了这个问题 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完成的

希望对你有帮助

上面的修复对我不起作用。但是,添加styled-componentsrollup.config.js外部和全局列表中对我有用。

    export default {
      ...
      external: ['styled-components'],
      ...
      globals: { 'styled-components': 'styled' },
    };

我正在使用 typescript create-react-library cli,它与 rollup 捆绑在一起。

https://github.com/styled-components/styled-components/issues/930

FrostyDog 发布的解决方案对我有用所以+1,但是......

尝试从 导入钩子时react我立即遇到了同样的错误,我可以按照上述解决方案进行操作

    export default {
      ...
      external: ['styled-components', 'react'],
      ...
    };

rollup.config.js我想要一个解决方案来处理所有图书馆的问题,所以这在未来不再是一个反复出现的问题。

所以这样做了......

import external from "rollup-plugin-peer-deps-external";
...
export default {
    ...
    plugins: [
        external({
            includeDependencies: true
        }),
        ...
    ]
};

为我和之后添加到项目中的每个人解决了这个问题。