reset console colors explicitly

Due to a bug in how Windows handles escape codes, the console output disappears after the version number (chalk/chalk#145 and Microsoft/BashOnWindows#2174). Resetting the output explicitly fixes storybook output on Windows.
This commit is contained in:
Bryan J. Ross 2017-06-02 16:10:55 -06:00 committed by GitHub
parent 93bd3dfc83
commit d97dbb284e

View File

@ -37,7 +37,7 @@ program
.option('--enable-db', 'DEPRECATED!')
.parse(process.argv);
logger.info(chalk.bold(`${packageJson.name} v${packageJson.version}\n`));
logger.info(chalk.bold(`${packageJson.name} v${packageJson.version}`) + chalk.reset('\n'));
if (program.enableDb || program.dbPath) {
logger.error(