Skip to content

Commit

Permalink
chore: do not clear screen when serving so that warnings can be seen
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Feb 2, 2018
1 parent 702b539 commit a6bc78e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/@vue/cli-service/lib/commands/serve.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ const {
info,
error,
hasYarn,
openBrowser,
clearConsole
openBrowser
} = require('@vue/cli-shared-utils')

const defaults = {
Expand All @@ -25,7 +24,6 @@ module.exports = (api, options) => {
'--https': `use https (default: ${defaults.https})`
}
}, args => {
clearConsole()
info('Starting development server...')

api.setMode(args.mode || defaults.mode)
Expand Down

0 comments on commit a6bc78e

Please sign in to comment.