有时在监视模式下运行webpack并编辑源文件时,我不确定webpack是否包含了我的更改。
每次webpack更新捆绑包时,有没有办法在控制台上打印时间戳?
答案 0 :(得分:14)
您可以添加自定义插件,如:
config.plugins.push(function(){
this.plugin('done', function(stats) {
console.log(('\n[' + new Date().toLocaleString() + ']') + ' Begin a new compilation.\n');
});
});
答案 1 :(得分:5)
答案 2 :(得分:5)
datou3600的答案很棒,但是为什么不做得更好呢?
增加一点延迟:
代码如下:
config.plugins.push(function(){
this.plugin('done', function(stats) {
setTimeout(
() => {
console.log(('\n[' + new Date().toLocaleString() + ']') + ' --- DONE.\n');
},
100
);
});
});
答案 3 :(得分:1)
只需更新为
DeprecationWarning: Tapable.plugin is deprecated. Use new API on `.hooks` instead
您可以这样做:
class WatchTimerPlugin {
apply(compiler) {
compiler.hooks.done.tap('Watch Timer Plugin', (stats) => {
console.log(('\n[' + new Date().toLocaleString() + ']') + ' --- DONE.\n');
});
}
}
module.exports = WatchTimerPlugin;