|
|
|
@ -1,9 +1,10 @@
|
|
|
|
|
import fs from 'fs-extra'
|
|
|
|
|
import { bundle } from './bundle'
|
|
|
|
|
import { bundle, okMark, failMark } from './bundle'
|
|
|
|
|
import { BuildConfig as ViteBuildOptions } from 'vite'
|
|
|
|
|
import { resolveConfig } from '../config'
|
|
|
|
|
import { renderPage } from './render'
|
|
|
|
|
import { OutputChunk, OutputAsset } from 'rollup'
|
|
|
|
|
import ora from 'ora'
|
|
|
|
|
|
|
|
|
|
export type BuildOptions = Pick<
|
|
|
|
|
Partial<ViteBuildOptions>,
|
|
|
|
@ -16,13 +17,17 @@ export type BuildOptions = Pick<
|
|
|
|
|
export async function build(buildOptions: BuildOptions = {}) {
|
|
|
|
|
process.env.NODE_ENV = 'production'
|
|
|
|
|
const siteConfig = await resolveConfig(buildOptions.root)
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
const [clientResult, , pageToHashMap] = await bundle(
|
|
|
|
|
siteConfig,
|
|
|
|
|
buildOptions
|
|
|
|
|
)
|
|
|
|
|
console.log('rendering pages...')
|
|
|
|
|
|
|
|
|
|
const spinner = ora()
|
|
|
|
|
spinner.start('rendering pages...')
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
const appChunk = clientResult.assets.find(
|
|
|
|
|
(chunk) =>
|
|
|
|
|
chunk.type === 'chunk' && chunk.fileName.match(/^app\.\w+\.js$/)
|
|
|
|
@ -49,8 +54,17 @@ export async function build(buildOptions: BuildOptions = {}) {
|
|
|
|
|
hashMapStirng
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
} catch (e) {
|
|
|
|
|
spinner.stopAndPersist({
|
|
|
|
|
symbol: failMark
|
|
|
|
|
})
|
|
|
|
|
throw e
|
|
|
|
|
}
|
|
|
|
|
spinner.stopAndPersist({
|
|
|
|
|
symbol: okMark
|
|
|
|
|
})
|
|
|
|
|
} finally {
|
|
|
|
|
await fs.remove(siteConfig.tempDir)
|
|
|
|
|
}
|
|
|
|
|
console.log('done.')
|
|
|
|
|
console.log('✨ done.')
|
|
|
|
|
}
|
|
|
|
|