mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
b7e57f9347
* Write BUILD_ID when building. It's a random id (uuid.v4()) * Add buildId to the core JS files. * Add immutable cache-control header. Only if the buildId is matched. * Set '-' as the dev buildId always. * Add buildId handling for JSON pages.
42 lines
983 B
JavaScript
42 lines
983 B
JavaScript
import fs from 'mz/fs'
|
|
import uuid from 'uuid'
|
|
import path from 'path'
|
|
import webpack from './webpack'
|
|
import clean from './clean'
|
|
import gzipAssets from './gzip'
|
|
|
|
export default async function build (dir) {
|
|
const [compiler] = await Promise.all([
|
|
webpack(dir),
|
|
clean(dir)
|
|
])
|
|
|
|
await runCompiler(compiler)
|
|
await gzipAssets(dir)
|
|
await writeBuildId(dir)
|
|
}
|
|
|
|
function runCompiler (compiler) {
|
|
return new Promise((resolve, reject) => {
|
|
compiler.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()
|
|
})
|
|
})
|
|
}
|
|
|
|
async function writeBuildId (dir) {
|
|
const buildIdPath = path.resolve(dir, '.next', 'BUILD_ID')
|
|
const buildId = uuid.v4()
|
|
await fs.writeFile(buildIdPath, buildId, 'utf8')
|
|
}
|