mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 18:13:54 +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
13 lines
277 B
JavaScript
13 lines
277 B
JavaScript
import consola from 'consola'
|
|
|
|
export default {
|
|
hooks(hook) {
|
|
hook('build:done', builder => {
|
|
consola.success('Compiled successfully')
|
|
})
|
|
hook('listen', (server, { port, host }) => {
|
|
consola.success(`Listening on http://${host}:${port}`)
|
|
})
|
|
}
|
|
}
|