Skip to content

Commit

Permalink
fix: code issues
Browse files Browse the repository at this point in the history
  • Loading branch information
adamszalapski committed Aug 26, 2019
1 parent 7a0a5b2 commit 136d610
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions packages/build-tools/tasks/task-collections.js
Expand Up @@ -270,13 +270,11 @@ async function start() {

try {
if (!config.quick) {
buildTime = await build({
shouldReturnTime: true,
});
buildTime = await build(true);
}
await Promise.all(await compileBasedOnEnvironment()).then(async () => {
await watch();
await serve(buildTime, true);
await serve(buildTime);
});
} catch (error) {
log.errorAndExit('Start failed', error);
Expand Down

0 comments on commit 136d610

Please sign in to comment.