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.
2 parents c54df36 + bb2320c commit edbb6f6Copy full SHA for edbb6f6
lib/Stats.js
@@ -736,7 +736,13 @@ class Stats {
736
if (typeof obj.builtAt === "number") {
737
const builtAtDate = new Date(obj.builtAt);
738
colors.normal("Built at: ");
739
- colors.normal(builtAtDate.toLocaleDateString());
+ colors.normal(
740
+ builtAtDate.toLocaleDateString({
741
+ day: "2-digit",
742
+ month: "2-digit",
743
+ year: "numeric"
744
+ })
745
+ );
746
colors.normal(" ");
747
colors.bold(builtAtDate.toLocaleTimeString());
748
newline();
0 commit comments