@firestartr/cli 1.50.1-snapshot-6 → 1.50.1-snapshot-8
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 -2
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -309770,9 +309770,9 @@ class GroupCollectionGithubDecanter extends GithubDecanter {
|
|
|
309770
309770
|
const groups = [];
|
|
309771
309771
|
const teamMaps = {};
|
|
309772
309772
|
teamList.forEach((team) => {
|
|
309773
|
-
teamMaps[team.
|
|
309773
|
+
teamMaps[team.slug] = team;
|
|
309774
309774
|
});
|
|
309775
|
-
const filteredGroups = await this.filter(GroupCollectionGithubDecanter.collectionKind, filters, teamList.map((team) => team.
|
|
309775
|
+
const filteredGroups = await this.filter(GroupCollectionGithubDecanter.collectionKind, filters, teamList.map((team) => team.slug));
|
|
309776
309776
|
for (const team of filteredGroups) {
|
|
309777
309777
|
groups.push(new GroupGithubDecanter({ groupDetails: teamMaps[team] }, this.org));
|
|
309778
309778
|
}
|