mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 18:34:50 +00:00
136 lines
4.3 KiB
TypeScript
136 lines
4.3 KiB
TypeScript
import { pathToFileURL } from 'node:url'
|
|
import type { EventType } from '@parcel/watcher'
|
|
import chokidar from 'chokidar'
|
|
import { isIgnored, tryResolveModule } from '@nuxt/kit'
|
|
import { interopDefault } from 'mlly'
|
|
import { debounce } from 'perfect-debounce'
|
|
import { normalize } from 'pathe'
|
|
import type { Nuxt } from 'nuxt/schema'
|
|
|
|
import { generateApp as _generateApp, createApp } from './app'
|
|
|
|
export async function build (nuxt: Nuxt) {
|
|
const app = createApp(nuxt)
|
|
const generateApp = debounce(() => _generateApp(nuxt, app), undefined, { leading: true })
|
|
await generateApp()
|
|
|
|
if (nuxt.options.dev) {
|
|
watch(nuxt)
|
|
nuxt.hook('builder:watch', async (event, path) => {
|
|
if (event !== 'change' && /^(app\.|error\.|plugins\/|middleware\/|layouts\/)/i.test(path)) {
|
|
if (path.startsWith('app')) {
|
|
app.mainComponent = undefined
|
|
}
|
|
if (path.startsWith('error')) {
|
|
app.errorComponent = undefined
|
|
}
|
|
await generateApp()
|
|
}
|
|
})
|
|
nuxt.hook('builder:generateApp', (options) => {
|
|
// Bypass debounce if we are selectively invalidating templates
|
|
if (options) { return _generateApp(nuxt, app, options) }
|
|
return generateApp()
|
|
})
|
|
}
|
|
|
|
await nuxt.callHook('build:before')
|
|
if (!nuxt.options._prepare) {
|
|
await bundle(nuxt)
|
|
await nuxt.callHook('build:done')
|
|
}
|
|
|
|
if (!nuxt.options.dev) {
|
|
await nuxt.callHook('close', nuxt)
|
|
}
|
|
}
|
|
|
|
const watchEvents: Record<EventType, 'add' | 'addDir' | 'change' | 'unlink' | 'unlinkDir'> = {
|
|
create: 'add',
|
|
delete: 'unlink',
|
|
update: 'change'
|
|
}
|
|
|
|
async function watch (nuxt: Nuxt) {
|
|
if (nuxt.options.experimental.watcher === 'parcel') {
|
|
if (nuxt.options.debug) {
|
|
console.time('[nuxt] builder:parcel:watch')
|
|
}
|
|
const watcherPath = await tryResolveModule('@parcel/watcher', [nuxt.options.rootDir, ...nuxt.options.modulesDir])
|
|
if (watcherPath) {
|
|
const { subscribe } = await import(pathToFileURL(watcherPath).href).then(interopDefault) as typeof import('@parcel/watcher')
|
|
for (const layer of nuxt.options._layers) {
|
|
if (!layer.config.srcDir) { continue }
|
|
const watcher = subscribe(layer.config.srcDir, (err, events) => {
|
|
if (err) { return }
|
|
for (const event of events) {
|
|
if (isIgnored(event.path)) { continue }
|
|
nuxt.callHook('builder:watch', watchEvents[event.type], normalize(event.path))
|
|
}
|
|
}, {
|
|
ignore: [
|
|
...nuxt.options.ignore,
|
|
'.nuxt',
|
|
'node_modules'
|
|
]
|
|
})
|
|
watcher.then((subscription) => {
|
|
console.timeEnd('[nuxt] builder:parcel:watch')
|
|
nuxt.hook('close', () => subscription.unsubscribe())
|
|
})
|
|
}
|
|
return
|
|
}
|
|
console.warn('[nuxt] falling back to `chokidar` as `@parcel/watcher` cannot be resolved in your project.')
|
|
}
|
|
|
|
if (nuxt.options.debug) {
|
|
console.time('[nuxt] builder:chokidar:watch')
|
|
}
|
|
|
|
const watcher = chokidar.watch(nuxt.options._layers.map(i => i.config.srcDir as string).filter(Boolean), {
|
|
...nuxt.options.watchers.chokidar,
|
|
cwd: nuxt.options.srcDir,
|
|
ignoreInitial: true,
|
|
ignored: [
|
|
isIgnored,
|
|
'.nuxt',
|
|
'node_modules'
|
|
]
|
|
})
|
|
|
|
if (nuxt.options.debug) {
|
|
watcher.on('ready', () => console.timeEnd('[nuxt] builder:chokidar:watch'))
|
|
}
|
|
|
|
watcher.on('all', (event, path) => nuxt.callHook('builder:watch', event, normalize(path)))
|
|
nuxt.hook('close', () => watcher.close())
|
|
}
|
|
|
|
async function bundle (nuxt: Nuxt) {
|
|
try {
|
|
const { bundle } = typeof nuxt.options.builder === 'string'
|
|
? await loadBuilder(nuxt, nuxt.options.builder)
|
|
: nuxt.options.builder
|
|
|
|
return bundle(nuxt)
|
|
} catch (error: any) {
|
|
await nuxt.callHook('build:error', error)
|
|
|
|
if (error.toString().includes('Cannot find module \'@nuxt/webpack-builder\'')) {
|
|
throw new Error([
|
|
'Could not load `@nuxt/webpack-builder`. You may need to add it to your project dependencies, following the steps in `https://github.com/nuxt/framework/pull/2812`.'
|
|
].join('\n'))
|
|
}
|
|
|
|
throw error
|
|
}
|
|
}
|
|
|
|
async function loadBuilder (nuxt: Nuxt, builder: string) {
|
|
const builderPath = await tryResolveModule(builder, [nuxt.options.rootDir, import.meta.url])
|
|
if (builderPath) {
|
|
return import(pathToFileURL(builderPath).href)
|
|
}
|
|
}
|