Skip to content

Commit

Permalink
fix: Add more places where Aik clears console
Browse files Browse the repository at this point in the history
  • Loading branch information
d4rkr00t committed Jun 14, 2017
1 parent 283aa6a commit 5c6c48c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/commands/dev-server/webpack-dev-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ export function onDone(

if (!hasErrors && !hasWarnings) {
print(
devServerCompiledSuccessfullyMsg(filename, flags, params, buildDuration)
devServerCompiledSuccessfullyMsg(filename, flags, params, buildDuration),
/* clear console */ true,
/* add sep */ true
);
testUtils();
return;
Expand Down Expand Up @@ -94,7 +96,9 @@ export function onDone(
formattedWarnings.join(`\n\n${separator()}\n\n`)
]),
eslintExtraWarningMsg()
])
]),
/* clear console */ true,
/* add sep */ true
);
}

Expand Down

0 comments on commit 5c6c48c

Please sign in to comment.