Skip to content

Commit

Permalink
Refactor the build server to remove tie to fs (vercel#1656)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexnewmannn authored and rauchg committed Apr 7, 2017
1 parent 6e0e230 commit 8d2bbf9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 16 deletions.
19 changes: 7 additions & 12 deletions server/build/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { tmpdir } from 'os'
import { join } from 'path'
import getConfig from '../config'
import fs from 'mz/fs'
import uuid from 'uuid'
import del from 'del'
Expand All @@ -14,10 +13,8 @@ export default async function build (dir) {

try {
await runCompiler(compiler)

// Pass in both the buildDir and the dir to retrieve config
await writeBuildStats(buildDir, dir)
await writeBuildId(buildDir, dir)
await writeBuildStats(buildDir)
await writeBuildId(buildDir)
} catch (err) {
console.error(`> Failed to build on ${buildDir}`)
throw err
Expand Down Expand Up @@ -48,24 +45,22 @@ function runCompiler (compiler) {
})
}

async function writeBuildStats (buildDir, dir) {
const dist = getConfig(dir).distDir
async function writeBuildStats (dir) {
// Here we can't use hashes in webpack chunks.
// That's because the "app.js" is not tied to a chunk.
// It's created by merging a few assets. (commons.js and main.js)
// So, we need to generate the hash ourself.
const assetHashMap = {
'app.js': {
hash: await md5File(join(buildDir, dist, 'app.js'))
hash: await md5File(join(dir, '.next', 'app.js'))
}
}
const buildStatsPath = join(buildDir, dist, 'build-stats.json')
const buildStatsPath = join(dir, '.next', 'build-stats.json')
await fs.writeFile(buildStatsPath, JSON.stringify(assetHashMap), 'utf8')
}

async function writeBuildId (buildDir, dir) {
const dist = getConfig(dir).distDir
const buildIdPath = join(buildDir, dist, 'BUILD_ID')
async function writeBuildId (dir) {
const buildIdPath = join(dir, '.next', 'BUILD_ID')
const buildId = uuid.v4()
await fs.writeFile(buildIdPath, buildId, 'utf8')
}
5 changes: 2 additions & 3 deletions server/build/replace.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ import getConfig from '../config'

export default async function replaceCurrentBuild (dir, buildDir) {
const dist = getConfig(dir).distDir
const buildDist = getConfig(buildDir).distDir
const _dir = join(dir, dist)
const _buildDir = join(buildDir, dist)
const oldDir = join(buildDir, `${buildDist}.old`)
const _buildDir = join(buildDir, '.next')
const oldDir = join(buildDir, '.next.old')

try {
await move(_dir, oldDir)
Expand Down
2 changes: 1 addition & 1 deletion server/build/webpack.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ export default async function createCompiler (dir, { dev = false, quiet = false,
context: dir,
entry,
output: {
path: join(buildDir || dir, config.distDir),
path: buildDir ? join(buildDir, '.next') : join(dir, config.distDir),
filename: '[name]',
libraryTarget: 'commonjs2',
publicPath: '/_webpack/',
Expand Down

0 comments on commit 8d2bbf9

Please sign in to comment.