Skip to content

Commit cee23ad

Browse files
committed
chore(website): reduce printed Date length
and fix double space
1 parent 05c981a commit cee23ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/website.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ async function pugify(filename, options, isReload = false) {
506506
await fs.promises.writeFile(newfile, str).catch((err) => {
507507
console.error('could not write', err.stack);
508508
}).then(() => {
509-
console.log('%s : rendered ', new Date(), newfile);
509+
console.log('%s : rendered %s', (new Date()).toISOString(), newfile);
510510
});
511511
}
512512

0 commit comments

Comments
 (0)