-
Notifications
You must be signed in to change notification settings - Fork 31k
Expand file tree
/
Copy pathindex.ts
More file actions
825 lines (756 loc) · 24.8 KB
/
index.ts
File metadata and controls
825 lines (756 loc) · 24.8 KB
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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
#!/usr/bin/env node
/* eslint-disable import/no-extraneous-dependencies */
import ciInfo from 'ci-info'
import { Command } from 'commander'
import Conf from 'conf'
import { existsSync } from 'node:fs'
import { basename, resolve } from 'node:path'
import { blue, bold, cyan, green, red, yellow } from 'picocolors'
import type { InitialReturnValue } from 'prompts'
import prompts from 'prompts'
import updateCheck from 'update-check'
import { createApp, DownloadError } from './create-app'
import type { PackageManager } from './helpers/get-pkg-manager'
import { getPkgManager } from './helpers/get-pkg-manager'
import { isFolderEmpty } from './helpers/is-folder-empty'
import { validateNpmName } from './helpers/validate-pkg'
import packageJson from './package.json'
import { Bundler } from './templates'
let projectPath: string = ''
const handleSigTerm = () => process.exit(0)
process.on('SIGINT', handleSigTerm)
process.on('SIGTERM', handleSigTerm)
const onPromptState = (state: {
value: InitialReturnValue
aborted: boolean
exited: boolean
}) => {
if (state.aborted) {
// If we don't re-enable the terminal cursor before exiting
// the program, the cursor will remain hidden
process.stdout.write('\x1B[?25h')
process.stdout.write('\n')
process.exit(1)
}
}
const program = new Command(packageJson.name)
.version(
packageJson.version,
'-v, --version',
'Output the current version of create-next-app.'
)
.argument('[directory]')
.usage('[directory] [options]')
.helpOption('-h, --help', 'Display this help message.')
.option('--ts, --typescript', 'Initialize as a TypeScript project. (default)')
.option('--js, --javascript', 'Initialize as a JavaScript project.')
.option('--tailwind', 'Initialize with Tailwind CSS config. (default)')
.option('--react-compiler', 'Initialize with React Compiler enabled.')
.option('--eslint', 'Initialize with ESLint config.')
.option('--biome', 'Initialize with Biome config.')
.option('--app', 'Initialize as an App Router project.')
.option('--src-dir', "Initialize inside a 'src/' directory.")
.option('--rspack', 'Enable Rspack as the bundler.')
.option(
'--import-alias <prefix/*>',
'Specify import alias to use (default "@/*").'
)
.option('--api', 'Initialize a headless API using the App Router.')
.option('--empty', 'Initialize an empty project.')
.option(
'--use-npm',
'Explicitly tell the CLI to bootstrap the application using npm.'
)
.option(
'--use-pnpm',
'Explicitly tell the CLI to bootstrap the application using pnpm.'
)
.option(
'--use-yarn',
'Explicitly tell the CLI to bootstrap the application using Yarn.'
)
.option(
'--use-bun',
'Explicitly tell the CLI to bootstrap the application using Bun.'
)
.option(
'--reset, --reset-preferences',
'Reset the preferences saved for create-next-app.'
)
.option(
'--skip-install',
'Explicitly tell the CLI to skip installing packages.'
)
.option('--yes', 'Use saved preferences or defaults for unprovided options.')
.option(
'-e, --example <example-name|github-url>',
`
An example to bootstrap the app with. You can use an example name
from the official Next.js repo or a public GitHub URL. The URL can use
any branch and/or subdirectory.
`
)
.option(
'--example-path <path-to-example>',
`
In a rare case, your GitHub URL might contain a branch name with
a slash (e.g. bug/fix-1) and the path to the example (e.g. foo/bar).
In this case, you must specify the path to the example separately:
--example-path foo/bar
`
)
.option(
'--agents-md',
'Include AGENTS.md to guide coding agents to write up-to-date Next.js code. (default)'
)
.option('--disable-git', `Skip initializing a git repository.`)
.action((name) => {
// Commander does not implicitly support negated options. When they are used
// by the user they will be interpreted as the positional argument (name) in
// the action handler. See https://github.com/tj/commander.js/pull/1355
if (name && !name.startsWith('--no-')) {
projectPath = name
}
})
.allowUnknownOption()
.parse(process.argv)
const opts = program.opts()
const { args } = program
const packageManager: PackageManager = !!opts.useNpm
? 'npm'
: !!opts.usePnpm
? 'pnpm'
: !!opts.useYarn
? 'yarn'
: !!opts.useBun
? 'bun'
: getPkgManager()
async function run(): Promise<void> {
const conf = new Conf({ projectName: 'create-next-app' })
if (opts.resetPreferences) {
const { resetPreferences } = await prompts({
onState: onPromptState,
type: 'toggle',
name: 'resetPreferences',
message: 'Would you like to reset the saved preferences?',
initial: false,
active: 'Yes',
inactive: 'No',
})
if (resetPreferences) {
conf.clear()
console.log('The preferences have been reset successfully!')
}
process.exit(0)
}
if (typeof projectPath === 'string') {
projectPath = projectPath.trim()
}
if (!projectPath) {
const res = await prompts({
onState: onPromptState,
type: 'text',
name: 'path',
message: 'What is your project named?',
initial: 'my-app',
validate: (name) => {
const validation = validateNpmName(basename(resolve(name)))
if (validation.valid) {
return true
}
return 'Invalid project name: ' + validation.problems[0]
},
})
if (typeof res.path === 'string') {
projectPath = res.path.trim()
}
}
if (!projectPath) {
console.log(
'\nPlease specify the project directory:\n' +
` ${cyan(opts.name())} ${green('<project-directory>')}\n` +
'For example:\n' +
` ${cyan(opts.name())} ${green('my-next-app')}\n\n` +
`Run ${cyan(`${opts.name()} --help`)} to see all options.`
)
process.exit(1)
}
const appPath = resolve(projectPath)
const appName = basename(appPath)
const validation = validateNpmName(appName)
if (!validation.valid) {
console.error(
`Could not create a project called ${red(
`"${appName}"`
)} because of npm naming restrictions:`
)
validation.problems.forEach((p) =>
console.error(` ${red(bold('*'))} ${p}`)
)
process.exit(1)
}
if (opts.example === true) {
console.error(
'Please provide an example name or url, otherwise remove the example option.'
)
process.exit(1)
}
if (existsSync(appPath) && !isFolderEmpty(appPath, appName)) {
process.exit(1)
}
const example = typeof opts.example === 'string' && opts.example.trim()
const preferences = (conf.get('preferences') || {}) as Record<
string,
boolean | string
>
/**
* If the user does not provide the necessary flags, prompt them for their
* preferences, unless `--yes` option was specified, or when running in CI.
*/
let skipPrompt = ciInfo.isCI || opts.yes
let useRecommendedDefaults = false
if (!example) {
const defaults: typeof preferences = {
typescript: true,
eslint: false,
linter: 'eslint',
tailwind: true,
app: true,
srcDir: false,
importAlias: '@/*',
customizeImportAlias: false,
empty: false,
disableGit: false,
reactCompiler: false,
agentsMd: true,
}
type DisplayConfigItem = {
key: keyof typeof defaults
values?: Record<string, string>
flags?: Record<string, string>
}
const displayConfig: DisplayConfigItem[] = [
{
key: 'typescript',
values: { true: 'TypeScript', false: 'JavaScript' },
flags: { true: '--ts', false: '--js' },
},
{
key: 'linter',
values: { eslint: 'ESLint', biome: 'Biome', none: 'None' },
flags: { eslint: '--eslint', biome: '--biome', none: '--no-eslint' },
},
{
key: 'reactCompiler',
values: { true: 'React Compiler', false: 'No React Compiler' },
flags: { true: '--react-compiler', false: '--no-react-compiler' },
},
{
key: 'tailwind',
values: { true: 'Tailwind CSS', false: 'No Tailwind CSS' },
flags: { true: '--tailwind', false: '--no-tailwind' },
},
{
key: 'srcDir',
values: { true: 'src/ directory', false: 'No src/ directory' },
flags: { true: '--src-dir', false: '--no-src-dir' },
},
{
key: 'app',
values: { true: 'App Router', false: 'Pages Router' },
flags: { true: '--app', false: '--no-app' },
},
{
key: 'agentsMd',
values: { true: 'AGENTS.md', false: 'No AGENTS.md' },
flags: { true: '--agents-md', false: '--no-agents-md' },
},
]
// Helper to format settings for display based on displayConfig
const formatSettingsDescription = (
settings: Record<string, boolean | string>
) => {
const descriptions: string[] = []
for (const config of displayConfig) {
const value = settings[config.key]
if (config.values) {
// Look up the display label for this value
const label = config.values[String(value)]
if (label) {
descriptions.push(label)
}
}
}
return descriptions.join(', ')
}
// Check if we have saved preferences
const hasSavedPreferences = Object.keys(preferences).length > 0
// Check if user provided any configuration flags
// If they did, skip all prompts and use recommended defaults for unspecified
// options. This is critical for AI agents, which pass flags like
// --typescript --tailwind --app and expect the rest to use sensible defaults
// without entering interactive mode.
const hasProvidedOptions = process.argv.some((arg) => arg.startsWith('--'))
if (!skipPrompt && hasProvidedOptions) {
skipPrompt = true
useRecommendedDefaults = true
}
// Only show the "recommended defaults" prompt if:
// - Not in CI and not using --yes flag
// - User hasn't provided any custom options
if (!skipPrompt && !hasProvidedOptions) {
const choices: Array<{
title: string
value: string
description?: string
}> = [
{
title: 'Yes, use recommended defaults',
value: 'recommended',
description: formatSettingsDescription(defaults),
},
{
title: 'No, customize settings',
value: 'customize',
description: 'Choose your own preferences',
},
]
// Add "reuse previous settings" option if we have saved preferences
if (hasSavedPreferences) {
const prefDescription = formatSettingsDescription(preferences)
choices.splice(1, 0, {
title: 'No, reuse previous settings',
value: 'reuse',
description: prefDescription,
})
}
const { setupChoice } = await prompts(
{
type: 'select',
name: 'setupChoice',
message: 'Would you like to use the recommended Next.js defaults?',
choices,
initial: 0,
},
{
onCancel: () => {
console.error('Exiting.')
process.exit(1)
},
}
)
if (setupChoice === 'recommended') {
useRecommendedDefaults = true
skipPrompt = true
} else if (setupChoice === 'reuse') {
skipPrompt = true
}
}
// If using recommended defaults, populate preferences with defaults
// This ensures they are saved for reuse next time
if (useRecommendedDefaults) {
Object.assign(preferences, defaults)
}
const getPrefOrDefault = (field: string) => {
// If using recommended defaults, always use hardcoded defaults
if (useRecommendedDefaults) {
return defaults[field]
}
// If not using the recommended template, we prefer saved preferences, otherwise defaults.
return preferences[field] ?? defaults[field]
}
if (!opts.typescript && !opts.javascript) {
if (skipPrompt) {
// default to TypeScript in CI as we can't prompt to
// prevent breaking setup flows
opts.typescript = getPrefOrDefault('typescript')
} else {
const styledTypeScript = blue('TypeScript')
const { typescript } = await prompts(
{
type: 'toggle',
name: 'typescript',
message: `Would you like to use ${styledTypeScript}?`,
initial: getPrefOrDefault('typescript'),
active: 'Yes',
inactive: 'No',
},
{
/**
* User inputs Ctrl+C or Ctrl+D to exit the prompt. We should close the
* process and not write to the file system.
*/
onCancel: () => {
console.error('Exiting.')
process.exit(1)
},
}
)
/**
* Depending on the prompt response, set the appropriate program flags.
*/
opts.typescript = Boolean(typescript)
opts.javascript = !typescript
preferences.typescript = Boolean(typescript)
}
}
// Determine linter choice if not specified via CLI flags
// Support both --no-linter (new) and --no-eslint (legacy) for backward compatibility
const noLinter =
args.includes('--no-linter') || args.includes('--no-eslint')
if (!opts.eslint && !opts.biome && !noLinter && !opts.api) {
if (skipPrompt) {
const preferredLinter = getPrefOrDefault('linter')
opts.eslint = preferredLinter === 'eslint'
opts.biome = preferredLinter === 'biome'
// No need to set noLinter flag since we check args at runtime
} else {
const linterIndexMap = {
eslint: 0,
biome: 1,
none: 2,
}
const { linter } = await prompts({
onState: onPromptState,
type: 'select',
name: 'linter',
message: 'Which linter would you like to use?',
choices: [
{
title: 'ESLint',
value: 'eslint',
description: 'More comprehensive lint rules',
},
{
title: 'Biome',
value: 'biome',
description: 'Fast formatter and linter (fewer rules)',
},
{
title: 'None',
value: 'none',
description: 'Skip linter configuration',
},
],
initial:
linterIndexMap[
getPrefOrDefault('linter') as keyof typeof linterIndexMap
],
})
opts.eslint = linter === 'eslint'
opts.biome = linter === 'biome'
preferences.linter = linter
// Keep backwards compatibility with old eslint preference
preferences.eslint = linter === 'eslint'
}
} else if (opts.eslint) {
opts.biome = false
preferences.linter = 'eslint'
preferences.eslint = true
} else if (opts.biome) {
opts.eslint = false
preferences.linter = 'biome'
preferences.eslint = false
} else if (noLinter) {
opts.eslint = false
opts.biome = false
preferences.linter = 'none'
preferences.eslint = false
}
if (
!opts.reactCompiler &&
!args.includes('--no-react-compiler') &&
!opts.api
) {
if (skipPrompt) {
opts.reactCompiler = getPrefOrDefault('reactCompiler')
} else {
const styledReactCompiler = blue('React Compiler')
const { reactCompiler } = await prompts({
onState: onPromptState,
type: 'toggle',
name: 'reactCompiler',
message: `Would you like to use ${styledReactCompiler}?`,
initial: getPrefOrDefault('reactCompiler'),
active: 'Yes',
inactive: 'No',
})
opts.reactCompiler = Boolean(reactCompiler)
preferences.reactCompiler = Boolean(reactCompiler)
}
}
if (!opts.tailwind && !args.includes('--no-tailwind') && !opts.api) {
if (skipPrompt) {
opts.tailwind = getPrefOrDefault('tailwind')
} else {
const tw = blue('Tailwind CSS')
const { tailwind } = await prompts({
onState: onPromptState,
type: 'toggle',
name: 'tailwind',
message: `Would you like to use ${tw}?`,
initial: getPrefOrDefault('tailwind'),
active: 'Yes',
inactive: 'No',
})
opts.tailwind = Boolean(tailwind)
preferences.tailwind = Boolean(tailwind)
}
}
if (!opts.srcDir && !args.includes('--no-src-dir')) {
if (skipPrompt) {
opts.srcDir = getPrefOrDefault('srcDir')
} else {
const styledSrcDir = blue('`src/` directory')
const { srcDir } = await prompts({
onState: onPromptState,
type: 'toggle',
name: 'srcDir',
message: `Would you like your code inside a ${styledSrcDir}?`,
initial: getPrefOrDefault('srcDir'),
active: 'Yes',
inactive: 'No',
})
opts.srcDir = Boolean(srcDir)
preferences.srcDir = Boolean(srcDir)
}
}
if (!opts.app && !args.includes('--no-app') && !opts.api) {
if (skipPrompt) {
opts.app = getPrefOrDefault('app')
} else {
const styledAppDir = blue('App Router')
const { app } = await prompts({
onState: onPromptState,
type: 'toggle',
name: 'app',
message: `Would you like to use ${styledAppDir}? (recommended)`,
initial: getPrefOrDefault('app'),
active: 'Yes',
inactive: 'No',
})
opts.app = Boolean(app)
preferences.app = Boolean(app)
}
}
const importAliasPattern = /^[^*"]+\/\*\s*$/
if (
typeof opts.importAlias !== 'string' ||
!importAliasPattern.test(opts.importAlias)
) {
if (skipPrompt) {
// We don't use preferences here because the default value is @/* regardless of existing preferences
opts.importAlias = defaults.importAlias
} else if (args.includes('--no-import-alias')) {
opts.importAlias = defaults.importAlias
} else {
const styledImportAlias = blue('import alias')
const { customizeImportAlias } = await prompts({
onState: onPromptState,
type: 'toggle',
name: 'customizeImportAlias',
message: `Would you like to customize the ${styledImportAlias} (\`${defaults.importAlias}\` by default)?`,
initial: getPrefOrDefault('customizeImportAlias'),
active: 'Yes',
inactive: 'No',
})
if (!customizeImportAlias) {
// We don't use preferences here because the default value is @/* regardless of existing preferences
opts.importAlias = defaults.importAlias
} else {
const { importAlias } = await prompts({
onState: onPromptState,
type: 'text',
name: 'importAlias',
message: `What ${styledImportAlias} would you like configured?`,
initial: getPrefOrDefault('importAlias'),
validate: (value) =>
importAliasPattern.test(value)
? true
: 'Import alias must follow the pattern <prefix>/*',
})
opts.importAlias = importAlias
preferences.importAlias = importAlias
}
}
}
if (args.includes('--no-agents-md')) {
opts.agentsMd = false
} else if (!opts.agentsMd) {
if (skipPrompt) {
opts.agentsMd = getPrefOrDefault('agentsMd')
} else {
const { agentsMd } = await prompts(
{
type: 'toggle',
name: 'agentsMd',
message:
'Would you like to include AGENTS.md to guide coding agents to write up-to-date Next.js code?',
initial: getPrefOrDefault('agentsMd'),
active: 'Yes',
inactive: 'No',
},
{
onCancel: () => {
console.error('Exiting.')
process.exit(1)
},
}
)
opts.agentsMd = Boolean(agentsMd)
preferences.agentsMd = Boolean(agentsMd)
}
}
// When prompts were skipped because flags were provided, print the
// defaults that were assumed so agents and users know what to override.
if (hasProvidedOptions && useRecommendedDefaults) {
const lines: string[] = []
for (const config of displayConfig) {
if (!config.flags || !config.values) continue
// Skip options the user already specified explicitly
const wasExplicit = process.argv.some((arg) =>
Object.values(config.flags!).includes(arg)
)
if (wasExplicit) continue
const value = String(defaults[config.key])
const flag = config.flags[value]
const label = config.values[value]
if (!flag || !label) continue
// Show alternatives the user could pass instead
const alts: string[] = []
for (const [k, f] of Object.entries(config.flags)) {
if (k !== value && config.values[k]) {
alts.push(`${f} for ${config.values[k]}`)
}
}
const altText = alts.length > 0 ? ` (use ${alts.join(', ')})` : ''
lines.push(` ${flag.padEnd(24)}${label}${altText}`)
}
// Import alias is not a boolean toggle, handle separately
const hasImportAlias = process.argv.some(
(arg) =>
arg.startsWith('--import-alias') ||
arg.startsWith('--no-import-alias')
)
if (!hasImportAlias) {
lines.push(` ${'--import-alias'.padEnd(24)}"${defaults.importAlias}"`)
}
if (lines.length > 0) {
console.log(
'\nUsing defaults for unprovided options:\n\n' +
lines.join('\n') +
'\n'
)
}
}
}
const bundler: Bundler = opts.rspack ? Bundler.Rspack : Bundler.Turbopack
try {
await createApp({
appPath,
packageManager,
example: example && example !== 'default' ? example : undefined,
examplePath: opts.examplePath,
typescript: opts.typescript,
tailwind: opts.tailwind,
eslint: opts.eslint,
biome: opts.biome,
app: opts.app,
srcDir: opts.srcDir,
importAlias: opts.importAlias,
skipInstall: opts.skipInstall,
empty: opts.empty,
api: opts.api,
bundler,
disableGit: opts.disableGit,
reactCompiler: opts.reactCompiler,
agentsMd: opts.agentsMd,
})
} catch (reason) {
if (!(reason instanceof DownloadError)) {
throw reason
}
const res = await prompts({
onState: onPromptState,
type: 'confirm',
name: 'builtin',
message:
`Could not download "${example}" because of a connectivity issue between your machine and GitHub.\n` +
`Do you want to use the default template instead?`,
initial: true,
})
if (!res.builtin) {
throw reason
}
await createApp({
appPath,
packageManager,
typescript: opts.typescript,
eslint: opts.eslint,
biome: opts.biome,
tailwind: opts.tailwind,
app: opts.app,
srcDir: opts.srcDir,
importAlias: opts.importAlias,
skipInstall: opts.skipInstall,
empty: opts.empty,
bundler,
disableGit: opts.disableGit,
reactCompiler: opts.reactCompiler,
agentsMd: opts.agentsMd,
})
}
conf.set('preferences', preferences)
}
// Determine the appropriate dist-tag to check for updates.
// For prerelease versions like "16.1.1-canary.32", extract "canary" and check
// against that dist-tag. This ensures canary users are notified about newer
// canary releases, not incorrectly prompted to "update" to stable.
function getDistTag(version: string): string {
const prereleaseMatch = version.match(/-([a-z]+)/)
return prereleaseMatch ? prereleaseMatch[1] : 'latest'
}
const update = updateCheck(packageJson, {
distTag: getDistTag(packageJson.version),
}).catch(() => null)
async function notifyUpdate(): Promise<void> {
try {
if ((await update)?.latest) {
const global = {
npm: 'npm i -g',
yarn: 'yarn global add',
pnpm: 'pnpm add -g',
bun: 'bun add -g',
}
const distTag = getDistTag(packageJson.version)
const pkgTag = distTag === 'latest' ? '' : `@${distTag}`
const updateMessage = `${global[packageManager]} create-next-app${pkgTag}`
console.log(
yellow(bold('A new version of `create-next-app` is available!')) +
'\n' +
'You can update by running: ' +
cyan(updateMessage) +
'\n'
)
}
process.exit(0)
} catch {
// ignore error
}
}
async function exit(reason: { command?: string }) {
console.log()
console.log('Aborting installation.')
if (reason.command) {
console.log(` ${cyan(reason.command)} has failed.`)
} else {
console.log(
red('Unexpected error. Please report it as a bug:') + '\n',
reason
)
}
console.log()
await notifyUpdate()
process.exit(1)
}
run().then(notifyUpdate).catch(exit)