ci: logging for ci

This commit is contained in:
iCrawl 2024-03-02 21:52:10 +01:00
parent 59f4db3e1d
commit d6bf0fe43e
No known key found for this signature in database
GPG key ID: 1AB888B16355FBB2
2 changed files with 2 additions and 0 deletions

View file

@ -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 {

View file

@ -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];