我最近从 browserify 切换到 webpack,构建时间从 4 秒跳到了 16 秒(2014 MBP)。我知道 webpack 的作用不仅仅是浏览器化,但我不应该花那么长时间。我的构建过程相当简单。是否有任何提示或选项可以改善我的构建时间?
var webpackOptions = {
cache : true,
output: {
filename: '[name].js',
},
module: {
loaders: [
{ test: /\.js$/, loader: 'jsx-loader' },
{ test: /\.css$/, loader: "style!css" }
]
},
};
gulp.task('buildJs', function(){
multipipe(
gulp.src(jsSrcPath),
named(),
webpack(webpackOptions),
uglify(),
gulp.dest(jsDestPath)
).on('error', function(error){
console.log(error)
});
});