Skip to content

Commit

Permalink
ci: logging for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
iCrawl committed Mar 2, 2024
1 parent 59f4db3 commit d6bf0fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/actions/src/uploadDocumentation/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const limit = pLimit(10);
const promises = [];

const globber = await create(`packages/${pkg}/docs/docs.api.json`);
console.log('Glob: ', await globber.glob());
for await (const file of globber.globGenerator()) {
const data = await readFile(file, 'utf8');
try {
Expand Down
1 change: 1 addition & 0 deletions packages/actions/src/uploadSplitDocumentation/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const limit = pLimit(10);
const promises = [];

const globber = await create(`packages/${pkg}/docs/${pkg}/split/*.api.json`);
console.log('Glob: ', await globber.glob());
for await (const file of globber.globGenerator()) {
const data = await readFile(file, 'utf8');
const pkgName = dirname(relative(cwd(), file)).split(sep)[1];
Expand Down

0 comments on commit d6bf0fe

Please sign in to comment.