mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
ef7a42649d
nuxt-start and nuxt/legacy are also coming!
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'
|
|
)
|
|
})
|
|
}
|
|
}
|