async listAllProjectIds()

in functions/src/project.ts [62:78]


  async listAllProjectIds() {
    // Loads ADDITIONAL_PROJECTS
    await Config.loadGlobalConfig();

    const repos = await this.github.listAllRepos("firebase");
    const ids = repos.map(repo => {
      return Util.pathToSlug(repo);
    });

    Logger.debug("listAllProjectIds", `Number of base projects: ${ids.length}`);
    Logger.debug(
      "listAllProjectIds",
      `Additional Projects: ${Config.ADDITIONAL_PROJECTS}`
    );
    const allIds = ids.concat(Config.ADDITIONAL_PROJECTS);
    return allIds;
  }