mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
fd9672e51d
UX: warns from friendly error now come after stats
17 lines
308 B
JavaScript
17 lines
308 B
JavaScript
|
|
export default class StatsPlugin {
|
|
constructor(statsOptions) {
|
|
this.statsOptions = statsOptions
|
|
}
|
|
|
|
apply(compiler) {
|
|
compiler.hooks.done.tap('stats-plugin', stats => {
|
|
process.stdout.write(
|
|
'\n' +
|
|
stats.toString(this.statsOptions) +
|
|
'\n'
|
|
)
|
|
})
|
|
}
|
|
}
|