mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
76582b8e43
* Removed combine-assets-plugin, since its very broken * Bundle everything into app.js on production build * Clean up * Removed app.js from server routes * Renamed app.js -> main.js and removed commons from loading * Remove commons and react CommonChunks * Removed the commons route * Killing the entire build-stats hack for app.js * Removed unused md5-file package
59 lines
1.6 KiB
JavaScript
59 lines
1.6 KiB
JavaScript
import { join } from 'path'
|
|
import fs from 'mz/fs'
|
|
import uuid from 'uuid'
|
|
import webpack from 'webpack'
|
|
import getConfig from '../config'
|
|
import {PHASE_PRODUCTION_BUILD} from '../../lib/constants'
|
|
import getBaseWebpackConfig from './webpack'
|
|
|
|
export default async function build (dir, conf = null) {
|
|
const config = getConfig(PHASE_PRODUCTION_BUILD, dir, conf)
|
|
const buildId = uuid.v4()
|
|
|
|
try {
|
|
await fs.access(dir, fs.constants.W_OK)
|
|
} catch (err) {
|
|
console.error(`> Failed, build directory is not writeable. https://err.sh/zeit/next.js/build-dir-not-writeable`)
|
|
throw err
|
|
}
|
|
|
|
try {
|
|
const configs = await Promise.all([
|
|
getBaseWebpackConfig(dir, { buildId, isServer: false, config }),
|
|
getBaseWebpackConfig(dir, { buildId, isServer: true, config })
|
|
])
|
|
|
|
await runCompiler(configs)
|
|
|
|
await writeBuildId(dir, buildId, config)
|
|
} catch (err) {
|
|
console.error(`> Failed to build`)
|
|
throw err
|
|
}
|
|
}
|
|
|
|
function runCompiler (compiler) {
|
|
return new Promise(async (resolve, reject) => {
|
|
const webpackCompiler = await webpack(await compiler)
|
|
webpackCompiler.run((err, stats) => {
|
|
if (err) return reject(err)
|
|
|
|
const jsonStats = stats.toJson()
|
|
|
|
if (jsonStats.errors.length > 0) {
|
|
const error = new Error(jsonStats.errors[0])
|
|
error.errors = jsonStats.errors
|
|
error.warnings = jsonStats.warnings
|
|
return reject(error)
|
|
}
|
|
|
|
resolve(jsonStats)
|
|
})
|
|
})
|
|
}
|
|
|
|
async function writeBuildId (dir, buildId, config) {
|
|
const buildIdPath = join(dir, config.distDir, 'BUILD_ID')
|
|
await fs.writeFile(buildIdPath, buildId, 'utf8')
|
|
}
|