File size: 1,747 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 |
import type { NextConfigComplete } from '../server/config-shared'
import type { Span } from '../trace'
import * as Log from './output/log'
import createSpinner from './spinner'
import isError from '../lib/is-error'
import type { Telemetry } from '../telemetry/storage'
import { EVENT_BUILD_FEATURE_USAGE } from '../telemetry/events/build'
// TODO: refactor this to account for more compiler lifecycle events
// such as beforeProductionBuild, but for now this is the only one that is needed
export async function runAfterProductionCompile({
config,
buildSpan,
telemetry,
metadata,
}: {
config: NextConfigComplete
buildSpan: Span
telemetry: Telemetry
metadata: {
projectDir: string
distDir: string
}
}): Promise<void> {
const run = config.compiler.runAfterProductionCompile
if (!run) {
return
}
telemetry.record([
{
eventName: EVENT_BUILD_FEATURE_USAGE,
payload: {
featureName: 'runAfterProductionCompile',
invocationCount: 1,
},
},
])
const afterBuildSpinner = createSpinner(
'Running next.config.js provided runAfterProductionCompile'
)
try {
const startTime = performance.now()
await buildSpan
.traceChild('after-production-compile')
.traceAsyncFn(async () => {
await run(metadata)
})
const duration = performance.now() - startTime
const formattedDuration = `${Math.round(duration)}ms`
Log.event(`Completed runAfterProductionCompile in ${formattedDuration}`)
} catch (err) {
// Handle specific known errors differently if needed
if (isError(err)) {
Log.error(`Failed to run runAfterProductionCompile: ${err.message}`)
}
throw err
} finally {
afterBuildSpinner?.stop()
}
}
|