Nuxt/packages/nuxt3/src/builder.ts

52 lines
1.3 KiB
TypeScript
Raw Normal View History

import chokidar from 'chokidar'
import { Nuxt } from '@nuxt/kit'
import { emptyDir } from 'fs-extra'
import { createApp, generateApp } from './app'
export async function build (nuxt: Nuxt) {
// Clear buildDir once
await emptyDir(nuxt.options.buildDir)
2020-07-02 13:02:35 +00:00
const app = createApp(nuxt)
await generateApp(nuxt, app)
2020-08-17 18:02:10 +00:00
if (nuxt.options.dev) {
watch(nuxt)
nuxt.hook('builder:watch', async (event, path) => {
if (event !== 'change' && /app|plugins/i.test(path)) {
if (path.match(/app/i)) {
app.main = null
}
await generateApp(nuxt, app)
}
})
nuxt.hook('builder:generateApp', () => generateApp(nuxt, app))
2020-08-17 18:02:10 +00:00
}
2020-07-02 13:02:35 +00:00
await bundle(nuxt)
await nuxt.callHook('build:done', { nuxt })
2020-07-02 13:02:35 +00:00
}
function watch (nuxt: Nuxt) {
const watcher = chokidar.watch(nuxt.options.srcDir, {
...nuxt.options.watchers.chokidar,
cwd: nuxt.options.srcDir,
ignoreInitial: true,
ignored: [
'.nuxt',
'.output',
'node_modules'
]
})
const watchHook = (event, path) => nuxt.callHook('builder:watch', event, path)
watcher.on('all', watchHook)
nuxt.hook('close', () => watcher.close())
return watcher
2020-08-17 18:02:10 +00:00
}
async function bundle (nuxt: Nuxt) {
const useVite = !!nuxt.options.vite
const { bundle } = await (useVite ? import('@nuxt/vite-builder') : import('@nuxt/webpack-builder'))
return bundle(nuxt)
}