mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
9b8cbed512
Using native node 8.x for less transpilations
19 lines
500 B
JavaScript
19 lines
500 B
JavaScript
// Taken from https://github.com/egoist/poi/blob/3e93c88c520db2d20c25647415e6ae0d3de61145/packages/poi/lib/webpack/timefix-plugin.js#L1-L16
|
|
// Thanks to @egoist
|
|
module.exports = class TimeFixPlugin {
|
|
constructor(timefix = 11000) {
|
|
this.timefix = timefix
|
|
}
|
|
|
|
apply(compiler) {
|
|
compiler.plugin('watch-run', (watching, callback) => {
|
|
watching.startTime += this.timefix
|
|
callback()
|
|
})
|
|
|
|
compiler.plugin('done', stats => {
|
|
stats.startTime -= this.timefix
|
|
})
|
|
}
|
|
}
|