mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
31 lines
680 B
JavaScript
Executable File
31 lines
680 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
// Show logs
|
|
process.env.DEBUG = 'nuxt:*'
|
|
|
|
const fs = require('fs')
|
|
const Nuxt = require('../')
|
|
const { resolve } = require('path')
|
|
|
|
const rootDir = resolve(process.argv.slice(2)[0] || '.')
|
|
const nuxtConfigFile = resolve(rootDir, 'nuxt.config.js')
|
|
let options = {}
|
|
if (fs.existsSync(nuxtConfigFile)) {
|
|
options = require(nuxtConfigFile)
|
|
}
|
|
if (typeof options.rootDir !== 'string') {
|
|
options.rootDir = rootDir
|
|
}
|
|
|
|
options.dev = false // Create production build when calling `nuxt build`
|
|
|
|
console.log('[nuxt] Building...')
|
|
new Nuxt(options)
|
|
.then((nuxt) => {
|
|
console.log('[nuxt] Building done')
|
|
})
|
|
.catch((err) => {
|
|
console.error(err)
|
|
process.exit(1)
|
|
})
|