File tree 2 files changed +6
-2
lines changed 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -26259,6 +26259,8 @@ async function run() {
26259
26259
throw new Error("no docs");
26260
26260
}
26261
26261
26262
+ console.log(docs);
26263
+
26262
26264
const transformed_docs = await Promise.all(
26263
26265
docs.map(([project, docs]) =>
26264
26266
// @ts-ignore
@@ -26275,7 +26277,7 @@ async function run() {
26275
26277
)
26276
26278
.flat(2);
26277
26279
26278
- console.log(JSON.stringify(ready_for_cf, null, 2));
26280
+ // console.log(JSON.stringify(ready_for_cf, null, 2));
26279
26281
26280
26282
const is_valid = ready_for_cf.every(
26281
26283
({ value, key }) => typeof value === "string" && typeof key === "string"
Original file line number Diff line number Diff line change @@ -84,6 +84,8 @@ async function run() {
84
84
throw new Error ( "no docs" ) ;
85
85
}
86
86
87
+ console . log ( docs ) ;
88
+
87
89
const transformed_docs = await Promise . all (
88
90
docs . map ( ( [ project , docs ] ) =>
89
91
// @ts -ignore
@@ -100,7 +102,7 @@ async function run() {
100
102
)
101
103
. flat ( 2 ) ;
102
104
103
- console . log ( JSON . stringify ( ready_for_cf , null , 2 ) ) ;
105
+ // console.log(JSON.stringify(ready_for_cf, null, 2));
104
106
105
107
const is_valid = ready_for_cf . every (
106
108
( { value, key } ) => typeof value === "string" && typeof key === "string"
You can’t perform that action at this time.
0 commit comments