mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
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:
parent
93bd3dfc83
commit
d97dbb284e
@ -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(
|
||||
|
Loading…
x
Reference in New Issue
Block a user