mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
77 lines
1.7 KiB
JavaScript
77 lines
1.7 KiB
JavaScript
import consola from 'consola'
|
|
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(formatPath(path))}`
|
|
})
|
|
},
|
|
|
|
async onWatchRestart({ event, path }, { nuxt, cmd, argv }) {
|
|
this.logChanged({ event, path })
|
|
|
|
await nuxt.close()
|
|
|
|
await this.startDev(cmd, argv)
|
|
},
|
|
|
|
onBundlerChange(path) {
|
|
this.logChanged({ event: 'change', path })
|
|
}
|
|
}
|