Skip to content
This repository has been archived by the owner on Dec 16, 2022. It is now read-only.

Commit

Permalink
feat(cli): Add empty lines before intro line
Browse files Browse the repository at this point in the history
When Yarn installs the dependencies running `yarn create instantsearch-app my-app`, the buffer sometimes isn't flushed.
  • Loading branch information
francoischalifour committed Jun 20, 2018
1 parent d8bd998 commit b4b4fcc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/cli/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,9 @@ const questions = [
].filter(question => isQuestionAsked({ question, args: optionsFromArguments }));

async function run() {
console.log();
console.log(`Creating a new InstantSearch app in ${chalk.green(appPath)}.`);
console.log();

const config = {
...(await getConfiguration({
Expand Down

0 comments on commit b4b4fcc

Please sign in to comment.