Giter Site home page Giter Site logo

Comments (10)

scottydawg avatar scottydawg commented on May 23, 2024 39

Sample:

    grunt.initConfig({      
      ...
      webpack: {
        app: {
          entry: 'target/.tmp/app.js',
          output: {
            path: 'target/dist/app',
            filename: 'app.bundle.js'
          },
          stats: {
            colors: true,
            modules: true,
            reasons: true,
            errorDetails: true
          },
          ...
        }
      }
      ...

from grunt-webpack.

bergr01 avatar bergr01 commented on May 23, 2024 3

Adding the above stats snippets doesn't seem to produce anything meaningful for me, e.g.

[370] ./src/home/controller/home.controller.js 1.18 kB {1} [built]
[371] ./src/modules/login/login.controller.js 1.56 kB {1} [built]
+ 351 hidden modules

ERROR in undefined is not a function
Child extract-text-webpack-plugin:
+ 2 hidden modules
Child extract-text-webpack-plugin:
+ 3 hidden modules

from grunt-webpack.

gxxcastillo avatar gxxcastillo commented on May 23, 2024 1

@Galeano, sorry, I don't remember and I've since moved onto other stuff :/

from grunt-webpack.

chiplay avatar chiplay commented on May 23, 2024

@uglymunky try adding errorDetails: true to your stats object in the config. I haven't tested it, but seems like it might be the right way to go: http://webpack.github.io/docs/node.js-api.html#stats-tojson

from grunt-webpack.

fgaleano avatar fgaleano commented on May 23, 2024

@uglymunky were you able to figure this one out? I'm in desperate need to see a verbose version of errors and I can't figure out where to put this flag on. Thanks.

from grunt-webpack.

fgaleano avatar fgaleano commented on May 23, 2024

@uglymunky No worries, thank you for replying.

from grunt-webpack.

aromanyukvakoms avatar aromanyukvakoms commented on May 23, 2024

thanks

from grunt-webpack.

scottydawg avatar scottydawg commented on May 23, 2024

@chiplay and @fgaleano: yes, adding errorDetails: true to stats does provide verbose output. This might be worth noting in the main README as it's likely to help first-timers get the kinks worked out of their build. Especially since webpack error messages are pretty unfriendly, as noted by users here and here.

I was about 5 minutes away from going back to browserify before finding this thread.

from grunt-webpack.

program247365 avatar program247365 commented on May 23, 2024

It is most certainly this, just tried it:

Gruntfile.js:

// load grunt-webpack node_module
    grunt.loadNpmTasks('grunt-webpack');

    grunt.initConfig({
        webpack: require('./tasks/options/webpack.js')
    });

My ./tasks/options/webpack.js file:

var webpackConfig = require('../../webpack.config.js');

var webpack = require('webpack');

module.exports = {
    stats: {
        // Configure the console output
        errorDetails: true, //this does show errors
        colors: false,
        modules: true,
        reasons: true
    },
    progress: true,
    options: webpackConfig,
    build: {
        plugins: webpackConfig.plugins.concat(
            new webpack.DefinePlugin({
                "process.env": {
                    // This has effect on the react lib size
                    "NODE_ENV": JSON.stringify("production")
                }
            }),
            new webpack.optimize.DedupePlugin(),
            new webpack.optimize.UglifyJsPlugin()
        )
    },
    "build-dev": {
        devtool: "sourcemap",
        debug: true
    }
};

💫 ✨ 😄

from grunt-webpack.

danez avatar danez commented on May 23, 2024

I think this should not be a problem anymore

from grunt-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.