async getAllRepoData()

in scripts/team.js [37:50]


  async getAllRepoData() {
    const promiseList = [];
    for (const k of this.nativeObject) {
      for (const item of k.list) {
        const {user, repo, extraContributors} = item;
        const list = [];
        if (user && repo) {
          promiseList.push(this.getRepoContributors({user, repo, extraContributors, list, item}));
        }
        await sleep()
      }
    }
    await Promise.all(promiseList)
  }