Skip to content

Commit

Permalink
chore(repo): improve report message readability (#9075)
Browse files Browse the repository at this point in the history
  • Loading branch information
meeroslav committed Feb 22, 2022
1 parent aa7bd61 commit b14e850
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/e2e-build-package-publish.ts
Expand Up @@ -130,7 +130,11 @@ function build(nxVersion: string) {
}
);
const a = new Date();
console.log(`Packages built successfully in ${a.getTime() - b.getTime()}`);
console.log(
`\n> Packages built successfully in ${
(a.getTime() - b.getTime()) / 1000
}s\n`
);
} catch (e) {
console.log(e.output.toString());
console.log('Build failed. See error above.');
Expand Down

0 comments on commit b14e850

Please sign in to comment.