mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-18 03:35:17 +00:00
3c54d26c76
* refactor: add untility for waiting until condition completed * test: cli * test: separate config of generate and build in cli test * test: increase timeout of cli test slightly * refactor: move waitUntil to test utils * fix: use waitUntil in test utils
18 lines
379 B
JavaScript
18 lines
379 B
JavaScript
import consola from 'consola'
|
|
|
|
export default {
|
|
buildDir: '.nuxt-generate/.build',
|
|
generate: {
|
|
dir: '.nuxt-generate/.generate'
|
|
},
|
|
hooks(hook) {
|
|
hook('generate:done', (generator, errors) => {
|
|
if (!errors || errors.length === 0) {
|
|
consola.success('Generated successfully')
|
|
} else {
|
|
consola.error('Generated failed')
|
|
}
|
|
})
|
|
}
|
|
}
|