Skip to content

Commit

Permalink
fix(issue): fix cmd hint with useYarn
Browse files Browse the repository at this point in the history
  • Loading branch information
unadlib committed May 6, 2020
1 parent 9ef19c6 commit ad7bd41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ export async function run(
console.log(`Run the following command to start ${chalk.cyan(appName)} project:`);
console.log();
console.log(` ${chalk.cyan(`cd ${appName}`)}`);
console.log(` ${chalk.cyan('yarn start')}`);
console.log(` ${chalk.cyan(`${useYarn? 'yarn': 'npm'} start`)}`);
console.log();
} catch (reason) {
console.log();
Expand Down

0 comments on commit ad7bd41

Please sign in to comment.