Je souhaite également utiliser ce message d'erreur pour mon propre webpack configuré. Comment puis-je procéder ?
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...