mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
28 lines
636 B
JavaScript
Executable File
28 lines
636 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
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()
|
|
})
|