@firestartr/cli 1.50.1-snapshot-29 → 1.50.1-snapshot-31

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
@@ -310291,7 +310291,7 @@ class RepoGithubDecanter extends GithubDecanter {
310291
310291
  return `collaborator:${member.name}`;
310292
310292
  });
310293
310293
  const teamWriters = this.data.teamsAndMembers.teams
310294
- .filter((team) => team.role === 'push')
310294
+ .filter((team) => ['push', 'write'].includes(team.role))
310295
310295
  .map((team) => {
310296
310296
  return `group:${team.name}`;
310297
310297
  });
@@ -310316,7 +310316,7 @@ class RepoGithubDecanter extends GithubDecanter {
310316
310316
  return `collaborator:${member.name}`;
310317
310317
  });
310318
310318
  const teamReaders = this.data.teamsAndMembers.teams
310319
- .filter((team) => team.role === 'pull')
310319
+ .filter((team) => ['pull', 'read'].includes(team.role))
310320
310320
  .map((team) => {
310321
310321
  return `group:${team.name}`;
310322
310322
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestartr/cli",
3
- "version": "1.50.1-snapshot-29",
3
+ "version": "1.50.1-snapshot-31",
4
4
  "private": false,
5
5
  "description": "Commandline tool",
6
6
  "main": "build/main.js",