diff --git a/package-lock.json b/package-lock.json index 030b46a..f96ed54 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "bradgarropy", - "version": "2.3.0", + "version": "2.4.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 473e2c6..0751823 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bradgarropy", - "version": "2.3.0", + "version": "2.4.0", "description": "🃏 npx business card", "keywords": [ "npm", diff --git a/src/generator/index.js b/src/generator/index.js index 76117ae..bae08d7 100644 --- a/src/generator/index.js +++ b/src/generator/index.js @@ -9,9 +9,12 @@ const generate = async () => { style: {}, } + console.log("--- Describe yourself ---\n") const infoAnswers = await inquirer.prompt(infoQuestions) config.info = infoAnswers + console.log("\n\n--- Showcase links ---\n") + let shouldContinue = true while (shouldContinue) { @@ -23,6 +26,7 @@ const generate = async () => { shouldContinue = more } + console.log("\n\n--- Style your card ---\n") const styleAnswers = await inquirer.prompt(styleQuestions) config.style = styleAnswers diff --git a/src/generator/questions.js b/src/generator/questions.js index 53c4bda..77bee06 100644 --- a/src/generator/questions.js +++ b/src/generator/questions.js @@ -27,12 +27,12 @@ const linkQuestions = [ { type: "input", name: "name", - message: "Enter a link name.", + message: "Enter a link name:", }, { type: "input", name: "url", - message: "Enter a url.", + message: "Enter a link url:", }, { type: "confirm",