I also want to use this error message for my own configured webpack. How to do it?
http://webpack.github.io/docs...
var webpack = require("webpack"); webpack({ // configuration }, function(err, stats) { if (err) { throw new gutil.PluginError('webpack:build', err); } gutil.log('[webpack:build]', stats.toString({ chunks: false, // Makes the build much quieter colors: true })); });
http://webpack.github.io/docs...