mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
166 lines
5.1 KiB
TypeScript
166 lines
5.1 KiB
TypeScript
import type { IncomingMessage, ServerResponse } from 'http'
|
|
import pify from 'pify'
|
|
import webpack from 'webpack'
|
|
import webpackDevMiddleware, { API } from 'webpack-dev-middleware'
|
|
import webpackHotMiddleware from 'webpack-hot-middleware'
|
|
import type { Compiler, Watching } from 'webpack'
|
|
|
|
import type { Nuxt } from '@nuxt/schema'
|
|
import { joinURL } from 'ufo'
|
|
import { logger, useNuxt } from '@nuxt/kit'
|
|
import { DynamicBasePlugin } from '../../vite/src/plugins/dynamic-base'
|
|
import { createMFS } from './utils/mfs'
|
|
import { registerVirtualModules } from './virtual-modules'
|
|
import { client, server } from './configs'
|
|
import { createWebpackConfigContext, applyPresets, getWebpackConfig } from './utils/config'
|
|
|
|
// TODO: Support plugins
|
|
// const plugins: string[] = []
|
|
|
|
export async function bundle (nuxt: Nuxt) {
|
|
await registerVirtualModules()
|
|
|
|
const webpackConfigs = [client, ...nuxt.options.ssr ? [server] : []].map((preset) => {
|
|
const ctx = createWebpackConfigContext(nuxt)
|
|
applyPresets(ctx, preset)
|
|
return getWebpackConfig(ctx)
|
|
})
|
|
|
|
await nuxt.callHook('webpack:config', webpackConfigs)
|
|
|
|
// Initialize shared MFS for dev
|
|
const mfs = nuxt.options.dev ? createMFS() : null
|
|
|
|
// Configure compilers
|
|
const compilers = webpackConfigs.map((config) => {
|
|
config.plugins.push(DynamicBasePlugin.webpack({
|
|
env: nuxt.options.dev ? 'dev' : config.name as 'client',
|
|
devAppConfig: nuxt.options.app,
|
|
globalPublicPath: '__webpack_public_path__'
|
|
}))
|
|
|
|
// Create compiler
|
|
const compiler = webpack(config)
|
|
|
|
// In dev, write files in memory FS
|
|
if (nuxt.options.dev) {
|
|
compiler.outputFileSystem = mfs
|
|
}
|
|
|
|
return compiler
|
|
})
|
|
|
|
nuxt.hook('close', async () => {
|
|
for (const compiler of compilers) {
|
|
await new Promise(resolve => compiler.close(resolve))
|
|
}
|
|
})
|
|
|
|
// Start Builds
|
|
if (nuxt.options.dev) {
|
|
return Promise.all(compilers.map(c => compile(c)))
|
|
}
|
|
|
|
for (const c of compilers) {
|
|
await compile(c)
|
|
}
|
|
}
|
|
|
|
async function createDevMiddleware (compiler: Compiler) {
|
|
const nuxt = useNuxt()
|
|
|
|
logger.debug('Creating webpack middleware...')
|
|
|
|
// Create webpack dev middleware
|
|
const devMiddleware = pify(webpackDevMiddleware(compiler, {
|
|
publicPath: joinURL(nuxt.options.app.baseURL, nuxt.options.app.buildAssetsDir),
|
|
outputFileSystem: compiler.outputFileSystem as any,
|
|
stats: 'none',
|
|
...nuxt.options.webpack.devMiddleware
|
|
})) as API<IncomingMessage, ServerResponse>
|
|
|
|
nuxt.hook('close', () => pify(devMiddleware.close.bind(devMiddleware))())
|
|
|
|
const { client: _client, ...hotMiddlewareOptions } = nuxt.options.webpack.hotMiddleware || {}
|
|
const hotMiddleware = pify(webpackHotMiddleware(compiler, {
|
|
log: false,
|
|
heartbeat: 10000,
|
|
path: joinURL(nuxt.options.app.baseURL, '__webpack_hmr', compiler.options.name),
|
|
...hotMiddlewareOptions
|
|
}))
|
|
|
|
await nuxt.callHook('webpack:devMiddleware', devMiddleware)
|
|
await nuxt.callHook('webpack:hotMiddleware', hotMiddleware)
|
|
|
|
// Register devMiddleware on server
|
|
await nuxt.callHook('server:devMiddleware', async (req, res, next) => {
|
|
for (const mw of [devMiddleware, hotMiddleware]) {
|
|
await mw?.(req, res)
|
|
}
|
|
next()
|
|
})
|
|
|
|
return devMiddleware
|
|
}
|
|
|
|
async function compile (compiler: Compiler) {
|
|
const nuxt = useNuxt()
|
|
|
|
const { name } = compiler.options
|
|
|
|
await nuxt.callHook('build:compile', { name, compiler })
|
|
|
|
// Load renderer resources after build
|
|
compiler.hooks.done.tap('load-resources', async (stats) => {
|
|
await nuxt.callHook('build:compiled', { name, compiler, stats })
|
|
// Reload renderer
|
|
await nuxt.callHook('build:resources', compiler.outputFileSystem)
|
|
})
|
|
|
|
// --- Dev Build ---
|
|
if (nuxt.options.dev) {
|
|
const compilersWatching: Watching[] = []
|
|
|
|
nuxt.hook('close', async () => {
|
|
await Promise.all(compilersWatching.map(watching => pify(watching.close.bind(watching))()))
|
|
})
|
|
|
|
// Client build
|
|
if (name === 'client') {
|
|
return new Promise((resolve, reject) => {
|
|
compiler.hooks.done.tap('nuxt-dev', () => { resolve(null) })
|
|
compiler.hooks.failed.tap('nuxt-errorlog', (err) => { reject(err) })
|
|
// Start watch
|
|
createDevMiddleware(compiler).then((devMiddleware) => {
|
|
compilersWatching.push(devMiddleware.context.watching)
|
|
})
|
|
})
|
|
}
|
|
|
|
// Server, build and watch for changes
|
|
return new Promise((resolve, reject) => {
|
|
const watching = compiler.watch(nuxt.options.watchers.webpack, (err) => {
|
|
if (err) { return reject(err) }
|
|
resolve(null)
|
|
})
|
|
|
|
compilersWatching.push(watching)
|
|
})
|
|
}
|
|
|
|
// --- Production Build ---
|
|
const stats = await new Promise<webpack.Stats>((resolve, reject) => compiler.run((err, stats) => err ? reject(err) : resolve(stats)))
|
|
|
|
if (stats.hasErrors()) {
|
|
// non-quiet mode: errors will be printed by webpack itself
|
|
const error = new Error('Nuxt build error')
|
|
if (nuxt.options.build.quiet === true) {
|
|
error.stack = stats.toString('errors-only')
|
|
}
|
|
throw error
|
|
}
|
|
|
|
// Await for renderer to load resources (programmatic, tests and generate)
|
|
await nuxt.callHook('build:resources')
|
|
}
|