@firestartr/cli 1.50.1-snapshot-24 → 1.50.1-snapshot-25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.js +2 -0
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -310500,6 +310500,8 @@ class RepoCollectionGithubDecanter extends GithubDecanter {
|
|
|
310500
310500
|
const filteredRepos = await this.filter(RepoCollectionGithubDecanter.collectionKind, filters, repoList.map((repo) => repo.name));
|
|
310501
310501
|
for (const repoName of filteredRepos) {
|
|
310502
310502
|
const repoInfo = await this.github.repo.getRepoInfo(this.org, repoName);
|
|
310503
|
+
console.log(`--- 🚀 Processing repo: ${repoName}`);
|
|
310504
|
+
console.dir(directAccessRepos, { depth: null });
|
|
310503
310505
|
repos.push(new RepoGithubDecanter({ repoDetails: repoInfo }, this.org, directAccessRepos?.[repoName]));
|
|
310504
310506
|
}
|
|
310505
310507
|
this.data['collection'] = repos;
|