GithubHelp home page GithubHelp logo

using babel-loader about parallel-webpack HOT 3 CLOSED

trivago avatar trivago commented on July 17, 2024
using babel-loader

from parallel-webpack.

Comments (3)

pago avatar pago commented on July 17, 2024

Hi @tonykung06, I can't confirm that problem as we're using babel-loader in most of our projects and it worked quite well.

Could you maybe setup a small repository which shows the problem so that I can investigate why it happens to you?

from parallel-webpack.

tonykung06 avatar tonykung06 commented on July 17, 2024

@pago Thanks for the reply :) I figured out what was happening

// Those options will be the same for every variant.
var baseOptions = {
    devtool: 'eval'
};

the base options are all ignored when I used
createVariants(baseOptions, variants, createConfig);

So I moves all my webpack configs from baseOptions to the createConfig() and let it return the whole complete set of configs, then it works.

from parallel-webpack.

pago avatar pago commented on July 17, 2024

@tonykung06 thanks the feedback! That indeed explains it all: its a documentation error.

The baseOptions are combined with each of the variants and then passed together as a single object to the createConfig callback.
Our use case for that is for options which are the same for all variants but still dynamic, i.e. they're being created from the environment or command line arguments or the result of some executed command or from reading an additional configuration file.

So, for each variant, the result of Object.assign({}, baseConfig, variant) is being passed to createConfig which should then return a valid Webpack configuration (or a Promise of such a configuration).

I'll adjust the documentation and make that concept clearer.

Again, thank you for the feedback! Please let me know if you have any further questions.

from parallel-webpack.

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.