Coder Social home page Coder Social logo

No default export (v2.5.1) about classnames HOT 5 CLOSED

Netail avatar Netail commented on June 26, 2024
No default export (v2.5.1)

from classnames.

Comments (5)

Netail avatar Netail commented on June 26, 2024 2

Ok, sound like things work as expected in newer versions, so I will consider this resolved.

Correct, caused a bit of a headache. But at least if someone runs into this issue, they'll know :)

from classnames.

jonkoops avatar jonkoops commented on June 26, 2024

I suspect #301 might be the cause of this, but I am not sure. Can you share the minimal code needed to reproduce this? This includes bundler configuration and version information. Is there a specific version where this started breaking?

from classnames.

Netail avatar Netail commented on June 26, 2024

I might have found the cause. A dependency used v2.3.2, while the project uses v2.5.1.
Project which use v2.4 or higher and a dependency which uses v2.3.2 or lower causes some import issues

from classnames.

jonkoops avatar jonkoops commented on June 26, 2024

Ok, sound like things work as expected in newer versions, so I will consider this resolved.

from classnames.

Dervisevic avatar Dervisevic commented on June 26, 2024

I don't know if this is a problem with my configuration only but I've made sure I'm running 2.5.1 via the yarn lockfile and manual check in node_modules.

I'm using rollup (with only module support no commonjs) and i get this error message when i try to build, and it's pointing at the import of the classnames default export:

src/index.ts → dist/bundle.esm.js...
[!] RollupError: "default" is not exported by "node_modules/classnames/index.js", imported by "src/components/ActivityIndicator/ActivityIndicator.tsx".

My rollup config (rollup.config.mjs)

import typescript from '@rollup/plugin-typescript';
import sass from 'rollup-plugin-sass';
import resolve from '@rollup/plugin-node-resolve';
import peerDepsExternal from 'rollup-plugin-peer-deps-external';
import terser from '@rollup/plugin-terser';

export default {
  input: 'src/index.ts', // Entry point for your library
  output: [
    {
      file: 'dist/bundle.esm.js',
      format: 'esm',
      sourcemap: true,
    },
  ],
  plugins: [
    peerDepsExternal(),
    resolve(), 
    typescript({ tsconfig: './tsconfig.json' }), 
    sass({ insert: true }),
    terser(), 
  ],
  external: ['react', 'react-dom'],
};

Any ideas to what could cause this? Or if anything else is needed to reproduce this issue?

My workaround for now is including a commonjs plugin for rollup and that solves the issue. But i feel like this is something others could encounter. This other issue #358 seems related.

from classnames.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.