UNPKG

next

Version:

The React Framework

1 lines • 39.8 kB
{"version":3,"sources":["../../src/bin/next.ts"],"sourcesContent":["#!/usr/bin/env node\n\nimport '../server/require-hook'\n\nimport os from 'os'\nimport {\n Argument,\n Command,\n InvalidArgumentError,\n Option,\n} from 'next/dist/compiled/commander'\n\nimport { warn } from '../build/output/log'\nimport semver from 'next/dist/compiled/semver'\nimport { bold, cyan, italic } from '../lib/picocolors'\nimport { formatCliHelpOutput } from '../lib/format-cli-help-output'\nimport { NON_STANDARD_NODE_ENV } from '../lib/constants'\nimport {\n getParsedDebugAddress,\n parseValidPositiveInteger,\n type DebugAddress,\n} from '../server/lib/utils'\nimport {\n SUPPORTED_TEST_RUNNERS_LIST,\n type NextTestOptions,\n} from '../cli/next-test.js'\nimport type { NextTelemetryOptions } from '../cli/next-telemetry.js'\nimport type { NextStartOptions } from '../cli/next-start.js'\nimport type { NextInfoOptions } from '../cli/next-info.js'\nimport type { NextDevOptions } from '../cli/next-dev.js'\nimport type { NextAnalyzeOptions } from '../cli/next-analyze.js'\nimport type { NextBuildOptions } from '../cli/next-build.js'\nimport type { NextTypegenOptions } from '../cli/next-typegen.js'\nimport type { NextPostBuildOptions } from '../cli/next-post-build.js'\nimport { ensureProfilesDir } from '../lib/profiles-dir'\nimport type { NextRequestInsightsOptions } from '../cli/next-request-insights.js'\n\n/**\n * Create `.next-profiles` (with its `.gitignore`) when profiling/tracing is\n * enabled — whether via the CLI flags or the env vars directly — so the\n * gitignore logic lives in one place. Also points CPU profiles at the directory.\n * Skipped for tracing when `NEXT_TURBOPACK_TRACING_PATH` redirects the output.\n */\nfunction setupProfilesDir(dir: string): void {\n const cpuProf = !!process.env.NEXT_CPU_PROF\n const turbopackTrace =\n !!process.env.NEXT_TURBOPACK_TRACING &&\n !process.env.NEXT_TURBOPACK_TRACING_PATH\n if (!cpuProf && !turbopackTrace) {\n return\n }\n const profilesDir = ensureProfilesDir(dir)\n if (cpuProf) {\n process.env.NEXT_CPU_PROF_DIR = profilesDir\n }\n}\n\nif (process.env.NEXT_RSPACK) {\n // silent rspack's schema check\n process.env.RSPACK_CONFIG_VALIDATE = 'loose-silent'\n}\n\nif (\n !semver.satisfies(\n process.versions.node,\n process.env.__NEXT_REQUIRED_NODE_VERSION_RANGE!,\n { includePrerelease: true }\n )\n) {\n console.error(\n `You are using Node.js ${process.versions.node}. For Next.js, Node.js version \"${process.env.__NEXT_REQUIRED_NODE_VERSION_RANGE}\" is required.`\n )\n process.exit(1)\n}\n\nprocess.env.NEXT_PRIVATE_START_TIME = Date.now().toString()\n\nfor (const dependency of ['react', 'react-dom']) {\n try {\n // When 'npm link' is used it checks the clone location. Not the project.\n require.resolve(dependency)\n } catch (err) {\n console.warn(\n `The module '${dependency}' was not found. Next.js requires that you include it in 'dependencies' of your 'package.json'. To add it, run 'npm install ${dependency}'`\n )\n }\n}\n\nclass NextRootCommand extends Command {\n createCommand(name: string) {\n const command = new Command(name)\n\n command.hook('preAction', (event) => {\n const commandName = event.name()\n const defaultEnv = commandName === 'dev' ? 'development' : 'production'\n const standardEnv = ['production', 'development', 'test']\n\n if (process.env.NODE_ENV) {\n const isNotStandard = !standardEnv.includes(process.env.NODE_ENV)\n const shouldWarnCommands =\n process.env.NODE_ENV === 'development'\n ? ['start', 'build']\n : process.env.NODE_ENV === 'production'\n ? ['dev']\n : []\n\n if (isNotStandard || shouldWarnCommands.includes(commandName)) {\n warn(NON_STANDARD_NODE_ENV)\n }\n }\n\n ;(process.env as any).NODE_ENV = process.env.NODE_ENV || defaultEnv\n ;(process.env as any).NEXT_RUNTIME = 'nodejs'\n\n if (\n process.platform === 'darwin' &&\n process.arch === 'x64' &&\n os.cpus().some((cpu) => cpu.model.includes('Apple'))\n ) {\n warn(\n 'You are running Next.js on an Apple Silicon Mac with Rosetta 2 ' +\n 'translation, which may cause degraded performance. You may have ' +\n 'accidentally installed an x86-64 version of Node.js.'\n )\n }\n\n if (\n commandName !== 'dev' &&\n commandName !== 'start' &&\n event.getOptionValue('inspect') === true\n ) {\n console.error(\n `\\`--inspect\\` flag is deprecated. Use env variable NODE_OPTIONS instead: NODE_OPTIONS='--inspect' next ${commandName}`\n )\n process.exit(1)\n }\n })\n\n return command\n }\n}\n\nfunction parseValidInspectAddress(value: string): DebugAddress {\n const address = getParsedDebugAddress(value)\n\n if (Number.isNaN(address.port)) {\n throw new InvalidArgumentError(\n 'The given value is not a valid inspect address. ' +\n 'Did you mean to pass an app path?\\n' +\n `Try switching the order of the arguments or set the default address explicitly e.g.\\n` +\n `next dev ${value} --inspect\\n` +\n `next dev --inspect= ${value}`\n )\n }\n\n return address\n}\n\nconst program = new NextRootCommand()\n\nprogram\n .name('next')\n .description(\n 'The Next.js CLI allows you to develop, build, start your application, and more.'\n )\n .configureHelp({\n formatHelp: (cmd, helper) => formatCliHelpOutput(cmd, helper),\n subcommandTerm: (cmd) => `${cmd.name()} ${cmd.usage()}`,\n })\n .helpCommand(false)\n .helpOption('-h, --help', 'Displays this message.')\n .version(\n `Next.js v${process.env.__NEXT_VERSION}`,\n '-v, --version',\n 'Outputs the Next.js version.'\n )\n\nprogram\n .command('build')\n .description(\n 'Creates an optimized production build of your application. The output displays information about each route.'\n )\n .argument(\n '[directory]',\n `A directory on which to build the application. ${italic(\n 'If no directory is provided, the current directory will be used.'\n )}`\n )\n .option(\n '--experimental-analyze',\n 'Analyze bundle output. Only compatible with Turbopack.'\n )\n .option('-d, --debug', 'Enables a more verbose build output.')\n .option(\n '--debug-prerender',\n 'Enables debug mode for prerendering. Not for production use!'\n )\n .option('--no-mangling', 'Disables mangling.')\n .option('--profile', 'Enables production profiling for React.')\n .option('--experimental-app-only', 'Builds only App Router routes.')\n .option('--turbo', 'Builds using Turbopack.')\n .option('--turbopack', 'Builds using Turbopack.')\n .option('--webpack', 'Builds using webpack.')\n .addOption(\n new Option(\n '--experimental-build-mode [mode]',\n 'Uses an experimental build mode.'\n )\n .choices(['compile', 'generate', 'generate-env'])\n .default('default')\n )\n .option(\n '--experimental-debug-memory-usage',\n 'Enables memory profiling features to debug memory consumption.'\n )\n .option(\n '--experimental-upload-trace, <traceUrl>',\n 'Reports a subset of the debugging trace to a remote HTTP URL. Includes sensitive data.'\n )\n .option(\n '--experimental-next-config-strip-types',\n 'Use Node.js native TypeScript resolution for next.config.(ts|mts)'\n )\n .option(\n '--debug-build-paths <patterns>',\n 'Comma-separated glob patterns or explicit paths for selective builds. Use \"!\" prefix to exclude. Examples: \"app/*\", \"app/page.tsx\", \"app/**/page.tsx\", \"app/**,!app/[slug]/**\"'\n )\n .option(\n '--experimental-cpu-prof',\n 'Enable CPU profiling. Profile is saved to .next-profiles/ on exit.'\n )\n .addOption(\n new Option(\n '--internal-trace [level]',\n 'Enable Turbopack tracing. \"all\" (default) enables turbo-tasks level tracing, \"overview\" enables overview tracing.'\n )\n .choices(['all', 'overview'])\n .preset('all')\n )\n .action((directory: string, options: NextBuildOptions) => {\n if (options.debugPrerender) {\n // @ts-expect-error not readonly\n process.env.NODE_ENV = 'development'\n }\n if (options.experimentalNextConfigStripTypes) {\n process.env.__NEXT_NODE_NATIVE_TS_LOADER_ENABLED = 'true'\n }\n if (options.experimentalCpuProf) {\n process.env.NEXT_CPU_PROF = '1'\n process.env.__NEXT_PRIVATE_CPU_PROFILE = 'build-main'\n }\n if (options.internalTrace) {\n process.env.NEXT_TURBOPACK_TRACING =\n options.internalTrace === 'all'\n ? 'turbo-tasks'\n : String(options.internalTrace)\n }\n setupProfilesDir(directory || process.cwd())\n\n // ensure process exits after build completes so open handles/connections\n // don't cause process to hang\n return import('../cli/next-build.js').then((mod) =>\n mod.nextBuild(options, directory).then(async () => {\n // Save CPU profile before exiting if enabled\n if (options.experimentalCpuProf) {\n await mod.saveCpuProfile()\n }\n process.exit(0)\n })\n )\n })\n .usage('[directory] [options]')\n\nprogram\n .command('experimental-analyze')\n .description(\n 'Analyze production bundle output with an interactive web ui. Does not produce an application build. Only compatible with Turbopack.'\n )\n .argument(\n '[directory]',\n `A directory on which to analyze the application. ${italic(\n 'If no directory is provided, the current directory will be used.'\n )}`\n )\n .option('--no-mangling', 'Disables mangling.')\n .option('--profile', 'Enables production profiling for React.')\n .option(\n '-o, --output',\n 'Only write analysis files to disk. Does not start the server.'\n )\n .addOption(\n new Option(\n '--port <port>',\n 'Specify a port number to serve the analyzer on.'\n )\n .implies({ serve: true })\n .argParser(parseValidPositiveInteger)\n .default(4000)\n .env('PORT')\n )\n .action((directory: string, options: NextAnalyzeOptions) => {\n return import('../cli/next-analyze.js')\n .then((mod) => mod.nextAnalyze(options, directory))\n .then(() => {\n if (options.output) {\n // The Next.js process is held open by something on the event loop. Exit manually like the `build` command does.\n // TODO: Fix the underlying issue so this is not necessary.\n process.exit(0)\n }\n })\n })\n\nprogram\n .command('dev', { isDefault: true })\n .description(\n 'Starts Next.js in development mode with hot-code reloading, error reporting, and more.'\n )\n .argument(\n '[directory]',\n `A directory on which to build the application. ${italic(\n 'If no directory is provided, the current directory will be used.'\n )}`\n )\n .addOption(\n new Option(\n '--inspect [[host:]port]',\n 'Allows inspecting server-side code. See https://nextjs.org/docs/app/guides/debugging#server-side-code'\n ).argParser(parseValidInspectAddress)\n )\n .option('--turbo', 'Starts development mode using Turbopack.')\n .option('--turbopack', 'Starts development mode using Turbopack.')\n .option('--webpack', 'Starts development mode using webpack.')\n .addOption(\n new Option(\n '-p, --port <port>',\n 'Specify a port number on which to start the application.'\n )\n .argParser(parseValidPositiveInteger)\n .default(3000)\n .env('PORT')\n )\n .option(\n '-H, --hostname <hostname>',\n 'Specify a hostname on which to start the application (default: 0.0.0.0).'\n )\n .option(\n '--disable-source-maps',\n \"Don't start the Dev server with `--enable-source-maps`.\",\n false\n )\n .option(\n '--experimental-https',\n 'Starts the server with HTTPS and generates a self-signed certificate.'\n )\n .option('--experimental-https-key, <path>', 'Path to a HTTPS key file.')\n .option(\n '--experimental-https-cert, <path>',\n 'Path to a HTTPS certificate file.'\n )\n .option(\n '--experimental-https-ca, <path>',\n 'Path to a HTTPS certificate authority file.'\n )\n // `--server-fast-refresh` is hidden because it's the default behavior and\n // only needs to be explicitly passed to override a\n // `experimental.turbopackServerFastRefresh: false` in next.config. The\n // `--no-server-fast-refresh` negation is the meaningful user-facing flag.\n .addOption(new Option('--server-fast-refresh').default(undefined).hideHelp())\n .addOption(\n new Option('--no-server-fast-refresh', 'Disable server-side Fast Refresh')\n )\n .option(\n '--experimental-upload-trace, <traceUrl>',\n 'Reports a subset of the debugging trace to a remote HTTP URL. Includes sensitive data.'\n )\n .option(\n '--experimental-next-config-strip-types',\n 'Use Node.js native TypeScript resolution for next.config.(ts|mts)'\n )\n .option(\n '--experimental-cpu-prof',\n 'Enable CPU profiling. Profiles are saved to .next-profiles/ on exit.'\n )\n .addOption(\n new Option(\n '--internal-trace [level]',\n 'Enable Turbopack tracing. \"all\" (default) enables turbo-tasks level tracing, \"overview\" enables overview tracing.'\n )\n .choices(['all', 'overview'])\n .preset('all')\n )\n .action(\n (directory: string, options: NextDevOptions, { _optionValueSources }) => {\n if (options.experimentalNextConfigStripTypes) {\n process.env.__NEXT_NODE_NATIVE_TS_LOADER_ENABLED = 'true'\n }\n if (options.experimentalCpuProf) {\n process.env.NEXT_CPU_PROF = '1'\n process.env.__NEXT_PRIVATE_CPU_PROFILE = 'dev-main'\n }\n if (options.internalTrace) {\n process.env.NEXT_TURBOPACK_TRACING =\n options.internalTrace === 'all'\n ? 'turbo-tasks'\n : String(options.internalTrace)\n }\n setupProfilesDir(directory || process.cwd())\n const portSource = _optionValueSources.port\n import('../cli/next-dev.js').then((mod) =>\n mod.nextDev(options, portSource, directory)\n )\n }\n )\n .usage('[directory] [options]')\n\nprogram\n .command('export', { hidden: true })\n .action(() => import('../cli/next-export.js').then((mod) => mod.nextExport()))\n .helpOption(false)\n\nprogram\n .command('info')\n .description(\n 'Prints relevant details about the current system which can be used to report Next.js bugs.'\n )\n .addHelpText(\n 'after',\n `\\nLearn more: ${cyan('https://nextjs.org/docs/api-reference/cli#info')}`\n )\n .option('--verbose', 'Collects additional information for debugging.')\n .action((options: NextInfoOptions) =>\n import('../cli/next-info.js').then((mod) => mod.nextInfo(options))\n )\n\nprogram\n .command('start')\n .description(\n 'Starts Next.js in production mode. The application should be compiled with `next build` first.'\n )\n .argument(\n '[directory]',\n `A directory on which to start the application. ${italic(\n 'If no directory is provided, the current directory will be used.'\n )}`\n )\n .addOption(\n new Option(\n '-p, --port <port>',\n 'Specify a port number on which to start the application.'\n )\n .argParser(parseValidPositiveInteger)\n .default(3000)\n .env('PORT')\n )\n .option(\n '-H, --hostname <hostname>',\n 'Specify a hostname on which to start the application (default: 0.0.0.0).'\n )\n .addOption(\n new Option(\n '--inspect [[host:]port]',\n 'Allows inspecting server-side code. See https://nextjs.org/docs/app/guides/debugging#server-side-code'\n ).argParser(parseValidInspectAddress)\n )\n .addOption(\n new Option(\n '--keepAliveTimeout <keepAliveTimeout>',\n 'Specify the maximum amount of milliseconds to wait before closing inactive connections.'\n ).argParser(parseValidPositiveInteger)\n )\n .option(\n '--experimental-next-config-strip-types',\n 'Use Node.js native TypeScript resolution for next.config.(ts|mts)'\n )\n .option(\n '--experimental-cpu-prof',\n 'Enable CPU profiling. Profiles are saved to .next-profiles/ on exit.'\n )\n .action((directory: string, options: NextStartOptions) => {\n if (options.experimentalNextConfigStripTypes) {\n process.env.__NEXT_NODE_NATIVE_TS_LOADER_ENABLED = 'true'\n }\n if (options.experimentalCpuProf) {\n process.env.NEXT_CPU_PROF = '1'\n process.env.__NEXT_PRIVATE_CPU_PROFILE = 'start-main'\n }\n setupProfilesDir(directory || process.cwd())\n return import('../cli/next-start.js').then((mod) =>\n mod.nextStart(options, directory)\n )\n })\n .usage('[directory] [options]')\n\nprogram\n .command('telemetry')\n .description(\n `Allows you to enable or disable Next.js' ${bold(\n 'completely anonymous'\n )} telemetry collection.`\n )\n .addArgument(new Argument('[arg]').choices(['disable', 'enable', 'status']))\n .addHelpText('after', `\\nLearn more: ${cyan('https://nextjs.org/telemetry')}`)\n .addOption(\n new Option('--enable', `Enables Next.js' telemetry collection.`).conflicts(\n 'disable'\n )\n )\n .option('--disable', `Disables Next.js' telemetry collection.`)\n .action((arg: string, options: NextTelemetryOptions) =>\n import('../cli/next-telemetry.js').then((mod) =>\n mod.nextTelemetry(options, arg)\n )\n )\n\nprogram\n .command('typegen')\n .description(\n 'Generate TypeScript definitions for routes, pages, and layouts without running a full build.'\n )\n .argument(\n '[directory]',\n `A directory on which to generate types. ${italic(\n 'If no directory is provided, the current directory will be used.'\n )}`\n )\n .option('--webpack', 'Use webpack when validating next.config.js')\n .action((directory: string, options: NextTypegenOptions) =>\n // ensure process exits after typegen completes so open handles/connections\n // don't cause process to hang\n import('../cli/next-typegen.js').then((mod) =>\n mod\n .nextTypegen(options, directory)\n .then(() => process.exit(0))\n .catch((err: unknown) => {\n // Without this, a failed typegen (e.g. `next.config` throwing) is\n // swallowed as an unhandled rejection that exits 0; surface it with a\n // non-zero exit so `next typegen && tsc` halts instead of running\n // against missing route types.\n console.error(\n '\\n> Unexpected error while generating route types. Original error:\\n'\n )\n console.error(err)\n process.exit(1)\n })\n )\n )\n .usage('[directory] [options]')\n\nconst nextVersion = process.env.__NEXT_VERSION || 'unknown'\nprogram\n .command('upgrade')\n .description(\n 'Upgrade Next.js apps to desired versions with a single command.'\n )\n .argument(\n '[directory]',\n `A Next.js project directory to upgrade. ${italic(\n 'If no directory is provided, the current directory will be used.'\n )}`\n )\n .usage('[directory] [options]')\n .option(\n '--revision <revision>',\n 'Specify the target Next.js version using an NPM dist tag (e.g. \"latest\", \"canary\", \"rc\", \"beta\") or an exact version number (e.g. \"15.0.0\").',\n nextVersion.includes('-canary.')\n ? 'canary'\n : nextVersion.includes('-rc.')\n ? 'rc'\n : nextVersion.includes('-beta.')\n ? 'beta'\n : 'latest'\n )\n .option('--verbose', 'Verbose output', false)\n .action(async (directory, options) => {\n const mod = await import('../cli/next-upgrade.js')\n mod.spawnNextUpgrade(directory, options)\n })\n\nprogram\n .command('experimental-test')\n .description(\n `Execute \\`next/experimental/testmode\\` tests using a specified test runner. The test runner defaults to 'playwright' if the \\`experimental.defaultTestRunner\\` configuration option or the \\`--test-runner\\` option are not set.`\n )\n .argument(\n '[directory]',\n `A Next.js project directory to execute the test runner on. ${italic(\n 'If no directory is provided, the current directory will be used.'\n )}`\n )\n .argument(\n '[test-runner-args...]',\n 'Any additional arguments or options to pass down to the test runner `test` command.'\n )\n .option(\n '--test-runner [test-runner]',\n `Any supported test runner. Options: ${bold(\n SUPPORTED_TEST_RUNNERS_LIST.join(', ')\n )}. ${italic(\n \"If no test runner is provided, the Next.js config option `experimental.defaultTestRunner`, or 'playwright' will be used.\"\n )}`\n )\n .allowUnknownOption()\n .action(\n (directory: string, testRunnerArgs: string[], options: NextTestOptions) => {\n return import('../cli/next-test.js').then((mod) => {\n mod.nextTest(directory, testRunnerArgs, options)\n })\n }\n )\n .usage('[directory] [options]')\n\nprogram\n .command('experimental-request-insights')\n .description(\n 'Inspect experimental Request Insights from a running Next.js dev server.'\n )\n .argument(\n '[directory]',\n `A directory containing the Next.js application. ${italic(\n 'If no directory is provided, the current directory will be used.'\n )}`\n )\n .option(\n '--url <url>',\n 'Override automatic discovery with the complete HTTP(S) URL of the running Next.js dev server.'\n )\n .option('--json', 'Print raw request insight JSON.')\n .addOption(\n new Option(\n '--limit <count>',\n 'Maximum number of recent request summaries to print.'\n ).argParser(parseValidPositiveInteger)\n )\n .action((directory: string, options: NextRequestInsightsOptions) => {\n return import('../cli/next-request-insights.js').then((mod) =>\n mod.nextRequestInsights(options, directory)\n )\n })\n .usage('[directory] [options]')\n\nconst internal = program\n .command('internal')\n .description(\n 'Internal debugging commands. Use with caution. Not covered by semver.'\n )\n\ninternal\n .command('trace')\n .alias('turbo-trace-server')\n .argument('file', 'Trace file to serve.')\n .addOption(\n new Option('-p, --port <port>', 'Override the port.').argParser(\n parseValidPositiveInteger\n )\n )\n .addOption(\n new Option(\n '--mcp-port <mcpPort>',\n 'Port for the MCP (Model Context Protocol) server. Defaults to --port + 1.'\n ).argParser(parseValidPositiveInteger)\n )\n .action(\n (\n file: string,\n options: { port: number | undefined; mcpPort: number | undefined }\n ) => {\n return import('../cli/internal/turbo-trace-server.js').then((mod) =>\n mod.startTurboTraceServerCli(file, options.port, options.mcpPort)\n )\n }\n )\n\ninternal\n .command('query-trace')\n .description(\n 'Query a running turbopack trace server (started with `next internal trace --mcp-port <port>`).'\n )\n .addOption(\n new Option(\n '--port <port>',\n 'MCP port of the running trace server. Defaults to 5748.'\n ).argParser(parseValidPositiveInteger)\n )\n .addOption(\n new Option(\n '--parent <parent>',\n 'Span ID to enumerate children of. Omit for root level.'\n )\n )\n .addOption(\n new Option(\n '--no-aggregated',\n 'Disable aggregation of spans by name (aggregated by default).'\n )\n )\n .addOption(\n new Option(\n '--sort <mode>',\n 'Sort mode: \"value\" for corrected duration descending, \"name\" for alphabetical.'\n ).choices(['value', 'name'])\n )\n .addOption(\n new Option('--search <search>', 'Substring filter on span name/category.')\n )\n .addOption(new Option('--json', 'Output as JSON instead of markdown.'))\n .addOption(\n new Option('--page <page>', 'Page number (1-based, default 1).').argParser(\n parseValidPositiveInteger\n )\n )\n .addHelpText('after', ({ command }) => {\n const port = (command.opts() as { port?: number }).port ?? 5748\n return `\\nExample:\\n next internal query-trace --port ${port} --parent <id>`\n })\n .action((options) =>\n import('../cli/internal/query-trace.js').then((mod) =>\n mod.queryTraceCli(options)\n )\n )\n\ninternal\n .command('post-build')\n .description(\n 'Runs post-build optimization steps (e.g. Turbopack database compaction).'\n )\n .argument(\n '[directory]',\n `A directory on which to run post-build steps. ${italic(\n 'If no directory is provided, the current directory will be used.'\n )}`\n )\n .action((directory: string, options: NextPostBuildOptions) => {\n return (\n require('../cli/next-post-build.js') as typeof import('../cli/next-post-build.js')\n )\n .nextPostBuild(options, directory)\n .then(() => process.exit(0))\n })\n .usage('[directory] [options]')\n\ninternal\n .command('upload-trace')\n .description(\n 'Upload CPU profiles from .next-profiles/ to Vercel Blob storage.'\n )\n .argument(\n '[directory]',\n `The project directory containing .next-profiles/. ${italic(\n 'If no directory is provided, the current directory will be used.'\n )}`\n )\n .action((directory: string) => {\n return import('../cli/internal/upload-trace.js').then((mod) =>\n mod.uploadTraceToBlob({ directory })\n )\n })\n .usage('[directory] [options]')\n\ninternal\n .command('static-routes-info')\n .description(\n 'Analyze a built Next.js app and report per-route bundle sizes across server bundled JS, server source maps, server unbundled, client JS, client source maps, and client CSS categories.'\n )\n .argument(\n '[directory]',\n `A directory containing the built Next.js application. ${italic(\n 'If no directory is provided, the current directory will be used.'\n )}`\n )\n .option('--json', 'Output as JSON instead of markdown.')\n .option(\n '--limit <n>',\n 'Only show the first N routes after sorting (totals always reflect all routes).',\n parseInt\n )\n .option(\n '--sort <key>',\n 'Sort routes by: name (default, ascending), or one of client, client-js, client-css, client-map, server, server-bundled-js, server-unbundled, server-map, total (descending).'\n )\n .option(\n '--files',\n 'Include the list of files (relative to the output directory) per category in the JSON output. Requires --json.'\n )\n .action(\n (\n directory: string,\n options: {\n json?: boolean\n limit?: number\n sort?: string\n files?: boolean\n }\n ) => {\n return import('../cli/internal/static-routes-info.js').then((mod) =>\n mod.staticRoutesInfoCli(options, directory)\n )\n }\n )\n .usage('[directory] [options]')\n\nprogram.parse(process.argv)\n"],"names":["setupProfilesDir","dir","cpuProf","process","env","NEXT_CPU_PROF","turbopackTrace","NEXT_TURBOPACK_TRACING","NEXT_TURBOPACK_TRACING_PATH","profilesDir","ensureProfilesDir","NEXT_CPU_PROF_DIR","NEXT_RSPACK","RSPACK_CONFIG_VALIDATE","semver","satisfies","versions","node","__NEXT_REQUIRED_NODE_VERSION_RANGE","includePrerelease","console","error","exit","NEXT_PRIVATE_START_TIME","Date","now","toString","dependency","require","resolve","err","warn","NextRootCommand","Command","createCommand","name","command","hook","event","commandName","defaultEnv","standardEnv","NODE_ENV","isNotStandard","includes","shouldWarnCommands","NON_STANDARD_NODE_ENV","NEXT_RUNTIME","platform","arch","os","cpus","some","cpu","model","getOptionValue","parseValidInspectAddress","value","address","getParsedDebugAddress","Number","isNaN","port","InvalidArgumentError","program","description","configureHelp","formatHelp","cmd","helper","formatCliHelpOutput","subcommandTerm","usage","helpCommand","helpOption","version","__NEXT_VERSION","argument","italic","option","addOption","Option","choices","default","preset","action","directory","options","debugPrerender","experimentalNextConfigStripTypes","__NEXT_NODE_NATIVE_TS_LOADER_ENABLED","experimentalCpuProf","__NEXT_PRIVATE_CPU_PROFILE","internalTrace","String","cwd","then","mod","nextBuild","saveCpuProfile","implies","serve","argParser","parseValidPositiveInteger","nextAnalyze","output","isDefault","undefined","hideHelp","_optionValueSources","portSource","nextDev","hidden","nextExport","addHelpText","cyan","nextInfo","nextStart","bold","addArgument","Argument","conflicts","arg","nextTelemetry","nextTypegen","catch","nextVersion","spawnNextUpgrade","SUPPORTED_TEST_RUNNERS_LIST","join","allowUnknownOption","testRunnerArgs","nextTest","nextRequestInsights","internal","alias","file","startTurboTraceServerCli","mcpPort","opts","queryTraceCli","nextPostBuild","uploadTraceToBlob","parseInt","staticRoutesInfoCli","parse","argv"],"mappings":"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","ignoreList":[0]}