You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`Running Prettier(${prettier.version.kind}) on repository '${repository.repository}' finished in ${prettyMilliseconds((process.hrtime.bigint()-startTime)/1_000_000n)}.`,
55
-
);
51
+
timing.end();
56
52
returncommitHash;
57
53
}
58
54
@@ -78,8 +74,9 @@ export async function runPrettier(
78
74
original: InstalledPrettier;
79
75
},
80
76
){
81
-
conststartTime=process.hrtime.bigint();
82
-
console.log(`Runing Prettier on repository '${repository.repository}' ...`);
77
+
consttiming=newTiming(
78
+
`Run Prettier on repository '${repository.repository}'`,
0 commit comments