Nuxt/bin/nuxt-dev

69 lines
1.9 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env node
2016-11-10 14:24:22 +00:00
// Show logs
process.env.DEBUG = 'nuxt:*'
2016-12-09 18:40:59 +00:00
var _ = require('lodash')
var debug = require('debug')('nuxt:build')
2016-12-15 17:48:31 +00:00
debug.color = 2 // force green color
2016-12-09 18:40:59 +00:00
var fs = require('fs')
var Nuxt = require('../')
var chokidar = require('chokidar')
var resolve = require('path').resolve
2016-12-09 18:40:59 +00:00
var rootDir = resolve(process.argv.slice(2)[0] || '.')
var nuxtConfigFile = resolve(rootDir, 'nuxt.config.js')
2016-12-07 17:47:47 +00:00
2016-12-09 18:40:59 +00:00
var options = {}
if (fs.existsSync(nuxtConfigFile)) {
options = require(nuxtConfigFile)
}
if (typeof options.rootDir !== 'string') {
options.rootDir = rootDir
}
2016-11-10 01:19:47 +00:00
options.dev = true // Add hot reloading and watching changes
2016-12-09 18:40:59 +00:00
var nuxt = new Nuxt(options)
2017-02-08 13:09:59 +00:00
var server = new nuxt.Server(nuxt)
.listen(process.env.PORT || process.env.npm_package_config_nuxt_port, process.env.HOST || process.env.npm_package_config_nuxt_host)
listenOnConfigChanges(nuxt, server)
2016-12-07 17:47:47 +00:00
nuxt.build()
.catch((err) => {
2016-12-09 17:54:41 +00:00
console.error(err) // eslint-disable-line no-console
2016-11-10 01:19:47 +00:00
process.exit(1)
})
function listenOnConfigChanges (nuxt, server) {
// Listen on nuxt.config.js changes
2016-12-09 18:40:59 +00:00
var build = _.debounce(() => {
debug('[nuxt.config.js] changed')
delete require.cache[nuxtConfigFile]
2016-12-09 18:40:59 +00:00
var options = {}
if (fs.existsSync(nuxtConfigFile)) {
try {
options = require(nuxtConfigFile)
} catch (e) {
return console.error(e) // eslint-disable-line no-console
}
}
options.rootDir = rootDir
nuxt.close()
.then(() => {
nuxt.renderer = null
debug('Rebuilding the app...')
2016-12-07 17:47:47 +00:00
return new Nuxt(options).build()
})
.then((nuxt) => {
server.nuxt = nuxt
})
.catch((error) => {
console.error('Error while rebuild the app:', error) // eslint-disable-line no-console
process.exit(1)
})
}, 200)
2016-12-09 18:40:59 +00:00
var nuxtConfigFile = resolve(rootDir, 'nuxt.config.js')
chokidar.watch(nuxtConfigFile, Object.assign({}, nuxt.options.watchers.chokidar, { ignoreInitial: true }))
.on('all', build)
}