From c491a8346d57f458690f157eaf4a8c65e12779fb Mon Sep 17 00:00:00 2001 From: Luke Sandberg Date: Sun, 5 Apr 2026 08:57:02 -0700 Subject: [PATCH] change the process name of builds --- packages/next/src/cli/next-build.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/next/src/cli/next-build.ts b/packages/next/src/cli/next-build.ts index 7829d882a040f3..a01f08b59677c0 100755 --- a/packages/next/src/cli/next-build.ts +++ b/packages/next/src/cli/next-build.ts @@ -36,6 +36,7 @@ export type NextBuildOptions = { } const nextBuild = async (options: NextBuildOptions, directory?: string) => { + process.title = `next-build (v${process.env.__NEXT_VERSION})` process.on('SIGTERM', () => { saveCpuProfile() process.exit(143)