mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 02:14:44 +00:00
bb8c4ff019
Co-authored-by: Pooya Parsa <pyapar@gmail.com>
56 lines
1.4 KiB
TypeScript
56 lines
1.4 KiB
TypeScript
import chokidar from 'chokidar'
|
|
import { Nuxt } from '@nuxt/kit'
|
|
import fse from 'fs-extra'
|
|
import { createApp, generateApp } from './app'
|
|
|
|
export async function build (nuxt: Nuxt) {
|
|
// Clear buildDir once
|
|
await fse.emptyDir(nuxt.options.buildDir)
|
|
|
|
const app = createApp(nuxt)
|
|
await generateApp(nuxt, app)
|
|
|
|
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))
|
|
}
|
|
|
|
await bundle(nuxt)
|
|
await nuxt.callHook('build:done', { nuxt })
|
|
|
|
if (!nuxt.options.dev) {
|
|
await nuxt.callHook('close', nuxt)
|
|
}
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
async function bundle (nuxt: Nuxt) {
|
|
const useVite = nuxt.options.vite !== false
|
|
const { bundle } = await (useVite ? import('@nuxt/vite-builder') : import('@nuxt/webpack-builder'))
|
|
return bundle(nuxt)
|
|
}
|