File size: 14,363 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 |
import type { webpack } from 'next/dist/compiled/webpack/webpack'
import { stringBufferUtils } from 'next/dist/compiled/webpack-sources3'
import { red } from '../../lib/picocolors'
import formatWebpackMessages from '../../shared/lib/format-webpack-messages'
import { nonNullable } from '../../lib/non-nullable'
import type { COMPILER_INDEXES } from '../../shared/lib/constants'
import {
COMPILER_NAMES,
CLIENT_STATIC_FILES_RUNTIME_MAIN_APP,
APP_CLIENT_INTERNALS,
PHASE_PRODUCTION_BUILD,
} from '../../shared/lib/constants'
import { runCompiler } from '../compiler'
import * as Log from '../output/log'
import getBaseWebpackConfig, { loadProjectInfo } from '../webpack-config'
import type { NextError } from '../../lib/is-error'
import {
TelemetryPlugin,
type TelemetryPluginState,
} from '../webpack/plugins/telemetry-plugin/telemetry-plugin'
import {
NextBuildContext,
resumePluginState,
getPluginState,
} from '../build-context'
import { createEntrypoints } from '../entries'
import loadConfig from '../../server/config'
import {
getTraceEvents,
initializeTraceState,
setGlobal,
trace,
type TraceEvent,
type TraceState,
} from '../../trace'
import { WEBPACK_LAYERS } from '../../lib/constants'
import { TraceEntryPointsPlugin } from '../webpack/plugins/next-trace-entrypoints-plugin'
import type { BuildTraceContext } from '../webpack/plugins/next-trace-entrypoints-plugin'
import type { UnwrapPromise } from '../../lib/coalesced-function'
import origDebug from 'next/dist/compiled/debug'
import { Telemetry } from '../../telemetry/storage'
import { durationToString } from '../duration-to-string'
const debug = origDebug('next:build:webpack-build')
type CompilerResult = {
errors: webpack.StatsError[]
warnings: webpack.StatsError[]
stats: (webpack.Stats | undefined)[]
}
type SingleCompilerResult = {
errors: webpack.StatsError[]
warnings: webpack.StatsError[]
stats: webpack.Stats | undefined
}
function isTelemetryPlugin(plugin: unknown): plugin is TelemetryPlugin {
return plugin instanceof TelemetryPlugin
}
function isTraceEntryPointsPlugin(
plugin: unknown
): plugin is TraceEntryPointsPlugin {
return plugin instanceof TraceEntryPointsPlugin
}
export async function webpackBuildImpl(
compilerName: keyof typeof COMPILER_INDEXES | null
): Promise<{
duration: number
pluginState: any
buildTraceContext?: BuildTraceContext
telemetryState?: TelemetryPluginState
}> {
let result: CompilerResult | null = {
warnings: [],
errors: [],
stats: [],
}
let webpackBuildStart
const nextBuildSpan = NextBuildContext.nextBuildSpan!
const dir = NextBuildContext.dir!
const config = NextBuildContext.config!
process.env.NEXT_COMPILER_NAME = compilerName || 'server'
const runWebpackSpan = nextBuildSpan.traceChild('run-webpack-compiler')
const entrypoints = await nextBuildSpan
.traceChild('create-entrypoints')
.traceAsyncFn(() =>
createEntrypoints({
buildId: NextBuildContext.buildId!,
config: config,
envFiles: NextBuildContext.loadedEnvFiles!,
isDev: false,
rootDir: dir,
pageExtensions: config.pageExtensions!,
pagesDir: NextBuildContext.pagesDir!,
appDir: NextBuildContext.appDir!,
pages: NextBuildContext.mappedPages!,
appPaths: NextBuildContext.mappedAppPages!,
previewMode: NextBuildContext.previewProps!,
rootPaths: NextBuildContext.mappedRootPaths!,
hasInstrumentationHook: NextBuildContext.hasInstrumentationHook!,
})
)
const commonWebpackOptions = {
isServer: false,
isCompileMode: NextBuildContext.isCompileMode,
buildId: NextBuildContext.buildId!,
encryptionKey: NextBuildContext.encryptionKey!,
config: config,
appDir: NextBuildContext.appDir!,
pagesDir: NextBuildContext.pagesDir!,
rewrites: NextBuildContext.rewrites!,
originalRewrites: NextBuildContext.originalRewrites,
originalRedirects: NextBuildContext.originalRedirects,
reactProductionProfiling: NextBuildContext.reactProductionProfiling!,
noMangling: NextBuildContext.noMangling!,
clientRouterFilters: NextBuildContext.clientRouterFilters!,
previewProps: NextBuildContext.previewProps!,
allowedRevalidateHeaderKeys: NextBuildContext.allowedRevalidateHeaderKeys!,
fetchCacheKeyPrefix: NextBuildContext.fetchCacheKeyPrefix!,
}
const configs = await runWebpackSpan
.traceChild('generate-webpack-config')
.traceAsyncFn(async () => {
const info = await loadProjectInfo({
dir,
config: commonWebpackOptions.config,
dev: false,
})
return Promise.all([
getBaseWebpackConfig(dir, {
...commonWebpackOptions,
middlewareMatchers: entrypoints.middlewareMatchers,
runWebpackSpan,
compilerType: COMPILER_NAMES.client,
entrypoints: entrypoints.client,
...info,
}),
getBaseWebpackConfig(dir, {
...commonWebpackOptions,
runWebpackSpan,
middlewareMatchers: entrypoints.middlewareMatchers,
compilerType: COMPILER_NAMES.server,
entrypoints: entrypoints.server,
...info,
}),
getBaseWebpackConfig(dir, {
...commonWebpackOptions,
runWebpackSpan,
middlewareMatchers: entrypoints.middlewareMatchers,
compilerType: COMPILER_NAMES.edgeServer,
entrypoints: entrypoints.edgeServer,
...info,
}),
])
})
const clientConfig = configs[0]
const serverConfig = configs[1]
const edgeConfig = configs[2]
if (
clientConfig.optimization &&
(clientConfig.optimization.minimize !== true ||
(clientConfig.optimization.minimizer &&
clientConfig.optimization.minimizer.length === 0))
) {
Log.warn(
`Production code optimization has been disabled in your project. Read more: https://nextjs.org/docs/messages/minification-disabled`
)
}
webpackBuildStart = process.hrtime()
debug(`starting compiler`, compilerName)
// We run client and server compilation separately to optimize for memory usage
await runWebpackSpan.traceAsyncFn(async () => {
if (config.experimental.webpackMemoryOptimizations) {
stringBufferUtils.disableDualStringBufferCaching()
stringBufferUtils.enterStringInterningRange()
}
// Run the server compilers first and then the client
// compiler to track the boundary of server/client components.
let clientResult: SingleCompilerResult | null = null
// During the server compilations, entries of client components will be
// injected to this set and then will be consumed by the client compiler.
let serverResult: UnwrapPromise<ReturnType<typeof runCompiler>>[0] | null =
null
let edgeServerResult:
| UnwrapPromise<ReturnType<typeof runCompiler>>[0]
| null = null
let inputFileSystem: webpack.Compiler['inputFileSystem'] | undefined
if (!compilerName || compilerName === 'server') {
debug('starting server compiler')
const start = Date.now()
;[serverResult, inputFileSystem] = await runCompiler(serverConfig, {
runWebpackSpan,
inputFileSystem,
})
debug(`server compiler finished ${Date.now() - start}ms`)
}
if (!compilerName || compilerName === 'edge-server') {
debug('starting edge-server compiler')
const start = Date.now()
;[edgeServerResult, inputFileSystem] = edgeConfig
? await runCompiler(edgeConfig, { runWebpackSpan, inputFileSystem })
: [null]
debug(`edge-server compiler finished ${Date.now() - start}ms`)
}
// Only continue if there were no errors
if (!serverResult?.errors.length && !edgeServerResult?.errors.length) {
const pluginState = getPluginState()
for (const key in pluginState.injectedClientEntries) {
const value = pluginState.injectedClientEntries[key]
const clientEntry = clientConfig.entry as webpack.EntryObject
if (key === APP_CLIENT_INTERNALS) {
clientEntry[CLIENT_STATIC_FILES_RUNTIME_MAIN_APP] = {
import: [
// TODO-APP: cast clientEntry[CLIENT_STATIC_FILES_RUNTIME_MAIN_APP] to type EntryDescription once it's available from webpack
// @ts-expect-error clientEntry['main-app'] is type EntryDescription { import: ... }
...clientEntry[CLIENT_STATIC_FILES_RUNTIME_MAIN_APP].import,
value,
],
layer: WEBPACK_LAYERS.appPagesBrowser,
}
} else {
clientEntry[key] = {
dependOn: [CLIENT_STATIC_FILES_RUNTIME_MAIN_APP],
import: value,
layer: WEBPACK_LAYERS.appPagesBrowser,
}
}
}
if (!compilerName || compilerName === 'client') {
debug('starting client compiler')
const start = Date.now()
;[clientResult, inputFileSystem] = await runCompiler(clientConfig, {
runWebpackSpan,
inputFileSystem,
})
debug(`client compiler finished ${Date.now() - start}ms`)
}
}
if (config.experimental.webpackMemoryOptimizations) {
stringBufferUtils.exitStringInterningRange()
}
inputFileSystem?.purge?.()
result = {
warnings: [
...(clientResult?.warnings ?? []),
...(serverResult?.warnings ?? []),
...(edgeServerResult?.warnings ?? []),
].filter(nonNullable),
errors: [
...(clientResult?.errors ?? []),
...(serverResult?.errors ?? []),
...(edgeServerResult?.errors ?? []),
].filter(nonNullable),
stats: [
clientResult?.stats,
serverResult?.stats,
edgeServerResult?.stats,
],
}
})
result = nextBuildSpan
.traceChild('format-webpack-messages')
.traceFn(() => formatWebpackMessages(result, true)) as CompilerResult
const telemetryPlugin = (clientConfig as webpack.Configuration).plugins?.find(
isTelemetryPlugin
)
const traceEntryPointsPlugin = (
serverConfig as webpack.Configuration
).plugins?.find(isTraceEntryPointsPlugin)
const webpackBuildEnd = process.hrtime(webpackBuildStart)
if (result.errors.length > 0) {
// Only keep the first few errors. Others are often indicative
// of the same problem, but confuse the reader with noise.
if (result.errors.length > 5) {
result.errors.length = 5
}
let error = result.errors.filter(Boolean).join('\n\n')
console.error(red('Failed to compile.\n'))
if (
error.indexOf('private-next-pages') > -1 &&
error.indexOf('does not contain a default export') > -1
) {
const page_name_regex = /'private-next-pages\/(?<page_name>[^']*)'/
const parsed = page_name_regex.exec(error)
const page_name = parsed && parsed.groups && parsed.groups.page_name
throw new Error(
`webpack build failed: found page without a React Component as default export in pages/${page_name}\n\nSee https://nextjs.org/docs/messages/page-without-valid-component for more info.`
)
}
console.error(error)
console.error()
if (
error.indexOf('private-next-pages') > -1 ||
error.indexOf('__next_polyfill__') > -1
) {
const err = new Error(
'webpack config.resolve.alias was incorrectly overridden. https://nextjs.org/docs/messages/invalid-resolve-alias'
) as NextError
err.code = 'INVALID_RESOLVE_ALIAS'
throw err
}
const err = new Error(
`Build failed because of ${process.env.NEXT_RSPACK ? 'rspack' : 'webpack'} errors`
) as NextError
err.code = 'WEBPACK_ERRORS'
throw err
} else {
const duration = webpackBuildEnd[0]
const durationString = durationToString(duration)
if (result.warnings.length > 0) {
Log.warn(`Compiled with warnings in ${durationString}\n`)
console.warn(result.warnings.filter(Boolean).join('\n\n'))
console.warn()
} else if (!compilerName) {
Log.event(`Compiled successfully in ${durationString}`)
}
return {
duration: webpackBuildEnd[0],
buildTraceContext: traceEntryPointsPlugin?.buildTraceContext,
pluginState: getPluginState(),
telemetryState: {
usages: telemetryPlugin?.usages() || [],
packagesUsedInServerSideProps:
telemetryPlugin?.packagesUsedInServerSideProps() || [],
useCacheTracker: telemetryPlugin?.getUseCacheTracker() || {},
},
}
}
}
// the main function when this file is run as a worker
export async function workerMain(workerData: {
compilerName: keyof typeof COMPILER_INDEXES
buildContext: typeof NextBuildContext
traceState: TraceState
}): Promise<
Awaited<ReturnType<typeof webpackBuildImpl>> & {
debugTraceEvents: TraceEvent[]
}
> {
// Clone the telemetry for worker
const telemetry = new Telemetry({
distDir: workerData.buildContext.config!.distDir,
})
setGlobal('telemetry', telemetry)
// setup new build context from the serialized data passed from the parent
Object.assign(NextBuildContext, workerData.buildContext)
// Initialize tracer state from the parent
initializeTraceState(workerData.traceState)
// Resume plugin state
resumePluginState(NextBuildContext.pluginState)
/// load the config because it's not serializable
NextBuildContext.config = await loadConfig(
PHASE_PRODUCTION_BUILD,
NextBuildContext.dir!,
{ debugPrerender: NextBuildContext.debugPrerender }
)
NextBuildContext.nextBuildSpan = trace(
`worker-main-${workerData.compilerName}`
)
const result = await webpackBuildImpl(workerData.compilerName)
const { entriesTrace, chunksTrace } = result.buildTraceContext ?? {}
if (entriesTrace) {
const { entryNameMap, depModArray } = entriesTrace
if (depModArray) {
result.buildTraceContext!.entriesTrace!.depModArray = depModArray
}
if (entryNameMap) {
const entryEntries = entryNameMap
result.buildTraceContext!.entriesTrace!.entryNameMap = entryEntries
}
}
if (chunksTrace?.entryNameFilesMap) {
const entryNameFilesMap = chunksTrace.entryNameFilesMap
result.buildTraceContext!.chunksTrace!.entryNameFilesMap = entryNameFilesMap
}
NextBuildContext.nextBuildSpan.stop()
return { ...result, debugTraceEvents: getTraceEvents() }
}
|