create-next-app
Advanced tools
Comparing version
@@ -136,4 +136,9 @@ /** | ||
const exampleCommand = `${nextExamplesBaseCommand}${program.example}`; | ||
execSync(exampleCommand, { stdio: 'inherit' }); | ||
try { | ||
execSync(exampleCommand); | ||
} catch (err) { | ||
throw err | ||
} | ||
// Change displayed command to yarn instead of yarnpkg | ||
@@ -147,3 +152,3 @@ const useYarn = shouldUseYarn() | ||
console.log(); | ||
console.log(chalk.cyan(` ${displayedCommand} dev`)); | ||
console.log(chalk.cyan(` ${displayedCommand} ${useYarn ? '' : 'run '} dev`)); | ||
console.log(' Starts the development server.'); | ||
@@ -158,4 +163,4 @@ console.log(); | ||
console.log(); | ||
console.log(chalk.cyan(' cd'), projectName); | ||
console.log(` ${chalk.cyan(`${displayedCommand} run dev`)}`); | ||
console.log(chalk.cyan(' cd'), cdpath); | ||
console.log(` ${chalk.cyan(`${displayedCommand} ${useYarn ? '' : 'install'}`)} then ${chalk.cyan(`${displayedCommand} run dev`)}`); | ||
console.log(); | ||
@@ -162,0 +167,0 @@ console.log('Happy hacking!'); |
{ | ||
"name": "create-next-app", | ||
"version": "0.3.3", | ||
"version": "0.3.4", | ||
"keywords": [ | ||
@@ -5,0 +5,0 @@ "next", |
21598
0.54%597
0.67%