fix(dev): better icon for windows support

This commit is contained in:
Pooya Parsa 2018-11-08 14:55:48 +03:30
parent c39c7cd51e
commit c62c9656ab
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
import consola from 'consola'
import chalk from 'chalk'
import env from 'std-env'
import { common, server } from '../options'
import { showBanner } from '../utils'
@ -35,7 +36,7 @@ export default {
const logChanged = (name) => {
consola.log({
type: 'change',
icon: chalk.blue.bold('↻'),
icon: chalk.blue.bold(env.windows ? '»' : '↻'),
message: chalk.blue(name)
})
}