Nuxt/packages/nitro/src/build.ts

111 lines
3.7 KiB
TypeScript

import { resolve, join } from 'upath'
import consola from 'consola'
import { rollup, watch as rollupWatch } from 'rollup'
import ora from 'ora'
import { readFile, emptyDir, copy } from 'fs-extra'
import { printFSTree } from './utils/tree'
import { getRollupConfig } from './rollup/config'
import { hl, prettyPath, serializeTemplate, writeFile } from './utils'
import { SigmaContext } from './context'
export async function prepare (sigmaContext: SigmaContext) {
consola.info(`Sigma preset is ${hl(sigmaContext.preset)}`)
await cleanupDir(sigmaContext.output.dir)
if (!sigmaContext.output.publicDir.startsWith(sigmaContext.output.dir)) {
await cleanupDir(sigmaContext.output.publicDir)
}
if (!sigmaContext.output.serverDir.startsWith(sigmaContext.output.dir)) {
await cleanupDir(sigmaContext.output.serverDir)
}
}
async function cleanupDir (dir: string) {
consola.info('Cleaning up', prettyPath(dir))
await emptyDir(dir)
}
export async function generate (sigmaContext: SigmaContext) {
const spinner = ora()
spinner.start('Generating public...')
await copy(
resolve(sigmaContext._nuxt.buildDir, 'dist/client'),
join(sigmaContext.output.publicDir, sigmaContext._nuxt.publicPath)
)
await copy(
resolve(sigmaContext._nuxt.srcDir, sigmaContext._nuxt.staticDir),
sigmaContext.output.publicDir
)
spinner.succeed('Generated public ' + prettyPath(sigmaContext.output.publicDir))
}
export async function build (sigmaContext: SigmaContext) {
// Compile html template
const htmlSrc = resolve(sigmaContext._nuxt.buildDir, `views/${{ 2: 'app', 3: 'document' }[2]}.template.html`)
const htmlTemplate = { src: htmlSrc, contents: '', dst: '', compiled: '' }
htmlTemplate.dst = htmlTemplate.src.replace(/.html$/, '.js').replace('app.', 'document.')
htmlTemplate.contents = await readFile(htmlTemplate.src, 'utf-8')
htmlTemplate.compiled = 'module.exports = ' + serializeTemplate(htmlTemplate.contents)
await sigmaContext._internal.hooks.callHook('sigma:template:document', htmlTemplate)
await writeFile(htmlTemplate.dst, htmlTemplate.compiled)
sigmaContext.rollupConfig = getRollupConfig(sigmaContext)
await sigmaContext._internal.hooks.callHook('sigma:rollup:before', sigmaContext)
return sigmaContext._nuxt.dev ? _watch(sigmaContext) : _build(sigmaContext)
}
async function _build (sigmaContext: SigmaContext) {
const spinner = ora()
spinner.start('Building server...')
const build = await rollup(sigmaContext.rollupConfig).catch((error) => {
spinner.fail('Rollup error: ' + error.messsage)
throw error
})
spinner.start('Wrting server bundle...')
await build.write(sigmaContext.rollupConfig.output)
spinner.succeed('Server built')
await printFSTree(sigmaContext.output.serverDir)
await sigmaContext._internal.hooks.callHook('sigma:compiled', sigmaContext)
return {
entry: resolve(sigmaContext.rollupConfig.output.dir, sigmaContext.rollupConfig.output.entryFileNames)
}
}
function _watch (sigmaContext: SigmaContext) {
const spinner = ora()
const watcher = rollupWatch(sigmaContext.rollupConfig)
let start
watcher.on('event', (event) => {
switch (event.code) {
// The watcher is (re)starting
case 'START':
return
// Building an individual bundle
case 'BUNDLE_START':
start = Date.now()
spinner.start('Building Sigma...')
return
// Finished building all bundles
case 'END':
sigmaContext._internal.hooks.callHook('sigma:compiled', sigmaContext)
return spinner.succeed(`Sigma built in ${Date.now() - start} ms`)
// Encountered an error while bundling
case 'ERROR':
spinner.fail('Rollup error: ' + event.error)
// consola.error(event.error)
}
})
}