2016-11-10 11:33:52 +00:00
|
|
|
#!/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 fs = require('fs')
|
|
|
|
var Nuxt = require('../')
|
|
|
|
var resolve = require('path').resolve
|
2016-11-10 11:33:52 +00:00
|
|
|
|
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 = {}
|
2016-11-10 11:33:52 +00:00
|
|
|
if (fs.existsSync(nuxtConfigFile)) {
|
|
|
|
options = require(nuxtConfigFile)
|
|
|
|
}
|
|
|
|
if (typeof options.rootDir !== 'string') {
|
|
|
|
options.rootDir = rootDir
|
|
|
|
}
|
2017-02-03 14:09:27 +00:00
|
|
|
options.dev = false // Force production mode (no webpack middleware called)
|
2016-11-10 11:33:52 +00:00
|
|
|
|
2016-12-08 15:41:20 +00:00
|
|
|
console.log('[nuxt] Generating...') // eslint-disable-line no-console
|
2016-12-09 18:40:59 +00:00
|
|
|
var nuxt = new Nuxt(options)
|
2016-12-07 17:47:47 +00:00
|
|
|
nuxt.generate()
|
2016-11-10 11:33:52 +00:00
|
|
|
.then(() => {
|
2016-12-08 15:41:20 +00:00
|
|
|
console.log('[nuxt] Generate done') // eslint-disable-line no-console
|
2016-11-10 11:33:52 +00:00
|
|
|
})
|
|
|
|
.catch((err) => {
|
2016-12-08 15:41:20 +00:00
|
|
|
console.error(err) // eslint-disable-line no-console
|
2017-01-20 17:55:30 +00:00
|
|
|
process.exit(1)
|
2016-11-10 11:33:52 +00:00
|
|
|
})
|