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

Commit b4b4fcc

Browse files
feat(cli): Add empty lines before intro line
When Yarn installs the dependencies running `yarn create instantsearch-app my-app`, the buffer sometimes isn't flushed.
1 parent d8bd998 commit b4b4fcc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/cli/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,9 @@ const questions = [
179179
].filter(question => isQuestionAsked({ question, args: optionsFromArguments }));
180180

181181
async function run() {
182+
console.log();
182183
console.log(`Creating a new InstantSearch app in ${chalk.green(appPath)}.`);
184+
console.log();
183185

184186
const config = {
185187
...(await getConfiguration({

0 commit comments

Comments
 (0)