Nuxt/packages/cli/src/commands/dev.js

79 lines
1.8 KiB
JavaScript
Raw Normal View History

import consola from 'consola'
2018-11-08 09:15:56 +00:00
import chalk from 'chalk'
import { common, server } from '../options'
import { showBanner, eventsMapping, formatPath } from '../utils'
export default {
name: 'dev',
description: 'Start the application in development mode (e.g. hot-code reloading, error reporting)',
usage: 'dev <dir>',
options: {
...common,
...server
},
async run(cmd) {
const argv = cmd.getArgv()
await this.startDev(cmd, argv)
},
async startDev(cmd, argv) {
try {
await this._startDev(cmd, argv)
} catch (error) {
consola.error(error)
}
},
async _startDev(cmd, argv) {
// Load config
const config = await cmd.getNuxtConfig(argv, { dev: true })
// Initialize nuxt instance
const nuxt = await cmd.getNuxt(config)
// Setup hooks
nuxt.hook('watch:restart', payload => this.onWatchRestart(payload, { nuxt, builder, cmd, argv }))
nuxt.hook('bundler:change', changedFileName => this.onBundlerChange(changedFileName))
// Start listening
await nuxt.server.listen()
// Create builder instance
const builder = await cmd.getBuilder(nuxt)
// Start Build
await builder.build()
// Show banner after build
showBanner(nuxt)
// Return instance
return nuxt
},
logChanged({ event, path }) {
const { icon, color, action } = eventsMapping[event] || eventsMapping.change
consola.log({
type: event,
icon: chalk[color].bold(icon),
message: `${action} ${chalk.cyan(path)}`
})
},
async onWatchRestart({ event, path }, { nuxt, cmd, argv }) {
this.logChanged({
event,
path: formatPath(path)
})
await nuxt.close()
await this.startDev(cmd, argv)
},
onBundlerChange(changedFileName) {
this.logChanged(changedFileName)
}
}