Skip to content

Commit 54e3d13

Browse files
committed
build
1 parent b911f04 commit 54e3d13

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1765,7 +1765,7 @@ async function run() {
17651765
throw new Error("no docs");
17661766
}
17671767

1768-
console.log(docs);
1768+
console.log(JSON.stringify(docs, null, 2));
17691769

17701770
// if (docs.length) {
17711771
// docs.forEach(([project, docs]) => {

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ async function run() {
7878
throw new Error("no docs");
7979
}
8080

81-
console.log(docs);
81+
console.log(JSON.stringify(docs, null, 2));
8282

8383
// if (docs.length) {
8484
// docs.forEach(([project, docs]) => {

0 commit comments

Comments
 (0)