Skip to content

Commit 9d909a1

Browse files
committed
chore: log more
1 parent 9c44d2b commit 9d909a1

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

dist/action.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26259,6 +26259,8 @@ async function run() {
2625926259
throw new Error("no docs");
2626026260
}
2626126261

26262+
console.log(docs);
26263+
2626226264
const transformed_docs = await Promise.all(
2626326265
docs.map(([project, docs]) =>
2626426266
// @ts-ignore
@@ -26275,7 +26277,7 @@ async function run() {
2627526277
)
2627626278
.flat(2);
2627726279

26278-
console.log(JSON.stringify(ready_for_cf, null, 2));
26280+
// console.log(JSON.stringify(ready_for_cf, null, 2));
2627926281

2628026282
const is_valid = ready_for_cf.every(
2628126283
({ value, key }) => typeof value === "string" && typeof key === "string"

src/action.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ async function run() {
8484
throw new Error("no docs");
8585
}
8686

87+
console.log(docs);
88+
8789
const transformed_docs = await Promise.all(
8890
docs.map(([project, docs]) =>
8991
// @ts-ignore
@@ -100,7 +102,7 @@ async function run() {
100102
)
101103
.flat(2);
102104

103-
console.log(JSON.stringify(ready_for_cf, null, 2));
105+
// console.log(JSON.stringify(ready_for_cf, null, 2));
104106

105107
const is_valid = ready_for_cf.every(
106108
({ value, key }) => typeof value === "string" && typeof key === "string"

0 commit comments

Comments
 (0)