@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.
Files changed (2) hide show
  1. package/build/index.js +2 -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.name] = team;
309773
+ teamMaps[team.slug] = team;
309774
309774
  });
309775
- const filteredGroups = await this.filter(GroupCollectionGithubDecanter.collectionKind, filters, teamList.map((team) => team.name));
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestartr/cli",
3
- "version": "1.50.1-snapshot-6",
3
+ "version": "1.50.1-snapshot-8",
4
4
  "private": false,
5
5
  "description": "Commandline tool",
6
6
  "main": "build/main.js",