Nuxt/test/fixtures/module/modules/hooks/index.js
2017-11-19 18:38:51 +03:30

24 lines
605 B
JavaScript

module.exports = function () {
let ctr = 1
// Add hook for module
this.nuxt.hook('modules:done', (moduleContainer) => {
this.nuxt.__module_hook = moduleContainer && ctr++
})
// Add hook for renderer
this.nuxt.hook('render:done', (renderer) => {
this.nuxt.__renderer_hook = renderer && ctr++
})
// Add hook for build
this.nuxt.hook('build:done', (builder) => {
this.nuxt.__builder_hook = builder && ctr++
})
// Note: Plugin is deprecated. Please use new hooks system.
this.nuxt.plugin('built', (builder) => {
this.nuxt.__builder_plugin = builder && ctr++
})
}