We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 068ad7f commit 37ff424Copy full SHA for 37ff424
lib/Stats.js
@@ -748,7 +748,13 @@ class Stats {
748
if (typeof obj.builtAt === "number") {
749
const builtAtDate = new Date(obj.builtAt);
750
colors.normal("Built at: ");
751
- colors.normal(builtAtDate.toLocaleDateString());
+ colors.normal(
752
+ builtAtDate.toLocaleDateString(undefined, {
753
+ day: "2-digit",
754
+ month: "2-digit",
755
+ year: "numeric"
756
+ })
757
+ );
758
colors.normal(" ");
759
colors.bold(builtAtDate.toLocaleTimeString());
760
newline();
0 commit comments