001_numbersguessingame
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -17,3 +17,3 @@ #! /usr/bin/env node | ||
if (userGuess === systemGeneratedNumber) { | ||
console.log(chalk.yellow.bold("Yeaaaaa your answer in correct \n ") + chalk.bgWhite("YOU WIN!") + "."); | ||
console.log(chalk.yellow.bold("Yeaaaaa your answer in correct \n ") + chalk.red.bold.bgYellow("YOU WIN!") + "."); | ||
} | ||
@@ -20,0 +20,0 @@ else { |
@@ -27,3 +27,3 @@ #! /usr/bin/env node | ||
if (userGuess===systemGeneratedNumber) { | ||
console.log(chalk.yellow.bold("Yeaaaaa your answer in correct \n ") + chalk.yellow.bold.bgWhite("YOU WIN!") + "."); | ||
console.log(chalk.yellow.bold("Yeaaaaa your answer in correct \n ") + chalk.red.bold.bgYellow("YOU WIN!") + "."); | ||
}else { | ||
@@ -30,0 +30,0 @@ console.log(chalk.red.bold(`Better Luck, Try Next Time`)); |
{ | ||
"name": "001_numbersguessingame", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Here is my Fisrt Number Guesssing Game", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
15364