We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3bb5cf commit 2214631Copy full SHA for 2214631
index.js
@@ -50,7 +50,7 @@ inquirer.prompt(questions).then(answers => {
50
chalk.yellow(`Variables that's different from ${mainEnvPath} and ${comparingEnvPath}:`),
51
differentEnvironmentVariables.reduce((accumulator, currentValue) => {
52
const main = chalk.green(`${currentValue.main} (${mainEnvPath})`);
53
- const comparing = chalk.blue(`${currentValue.comparing} (${comparingEnvPath})`);
+ const comparing = chalk.magenta(`${currentValue.comparing} (${comparingEnvPath})`);
54
return `${accumulator}\n${currentValue.key}\n${main}\n${comparing}\n`
55
}, ''),
56
);
0 commit comments