Giter Club home page Giter Club logo

Comments (3)

maslianok avatar maslianok commented on May 18, 2024

I'm not sure why are you receiving this error.

It should import a module that was already processed by babel.

We have two directories:
src - raw code for development (ES6, JSX etc.)
lib - code processed by Babel (ES5, ready to use code)

When you import the module to your components it should connect files from the lib folder.

How do you import the library? And can you also show your webpack config?

from react-responsive-tabs.

vincentaudebert avatar vincentaudebert commented on May 18, 2024

I import like that import Tabs from 'react-responsive-tabs';

And this is my webpack config:

const _ = require('lodash');
const path = require('path');
const glob = require('glob').sync;
const webpack = require('webpack');

const COMMON_DIR = path.join('.', 'client', 'common', 'src');

function entryPoint(filename) {
    const entryName = path.basename(filename, '.entry.js');
    return [entryName, filename];
}


function entryPoints(paths) {
    return _(glob(paths))
    .map(entryPoint)
    .fromPairs()
    .value();
}

const entryObj = entryPoints('./client/**/src/*.entry.js');
entryObj.common = ['react', 'react-dom', 'iframe-resizer/js/iframeResizer.contentWindow.min.js'];

module.exports = {
    entry: entryObj,
    resolve: {
        alias: {
            components: path.resolve(COMMON_DIR, 'components'),
            commonUtil: path.resolve(COMMON_DIR, 'util'),
        },
    },
    output: {
        path: path.join('.', 'core', 'static', 'js'),
        filename: '[name].bundle.js',
    },
    plugins: [
        new webpack.ProvidePlugin({
            fetch: 'imports?this=>global!exports?global.fetch!whatwg-fetch',
        }),
        new webpack.optimize.CommonsChunkPlugin('common', 'common.bundle.js', Infinity),
    ],
    module: {
        loaders: [
            {
                test: /\.js$/,
                loader: 'babel-loader',
            },
            {
                test: /\.jsx$/,
                loader: 'babel-loader',
            },
        ],
    },
};

Could it be because I have a vendor bundle apart?
When I installed the missing babel plugins locally it worked fine though...

from react-responsive-tabs.

maslianok avatar maslianok commented on May 18, 2024

This error should be fixed in the latest release.
Please, let me know if this error still occurs.

from react-responsive-tabs.

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.