@firestartr/cli 1.60.1 → 1.60.2-snapshot-1

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 +6 -2
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -367410,7 +367410,11 @@ class RepoGithubDecanter extends GithubDecanter {
367410
367410
  };
367411
367411
  });
367412
367412
  this.data['teamsAndMembers']['teams'] = teams;
367413
- this.data['teamsAndMembers']['directMembers'] = directMembers;
367413
+ // GitHub's `affiliation=direct` includes outside collaborators, so we must
367414
+ // exclude them from directMembers to avoid tagging them as user-imported-ref.
367415
+ const outsideMemberNames = new Set(outsideMembers.map((m) => m.name.toLowerCase()));
367416
+ const filteredDirectMembers = directMembers.filter((m) => !outsideMemberNames.has(m.name.toLowerCase()));
367417
+ this.data['teamsAndMembers']['directMembers'] = filteredDirectMembers;
367414
367418
  this.data['teamsAndMembers']['outsideMembers'] = outsideMembers;
367415
367419
  }
367416
367420
  async __gatherPages() {
@@ -377297,7 +377301,7 @@ const crs_analyzerSubcommand = {
377297
377301
  };
377298
377302
 
377299
377303
  ;// CONCATENATED MODULE: ./package.json
377300
- const package_namespaceObject = {"i8":"1.60.1"};
377304
+ const package_namespaceObject = JSON.parse('{"i8":"1.60.2-snapshot-1"}');
377301
377305
  ;// CONCATENATED MODULE: ../../package.json
377302
377306
  const package_namespaceObject_1 = {"i8":"1.60.1"};
377303
377307
  ;// CONCATENATED MODULE: ./src/subcommands/index.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestartr/cli",
3
- "version": "1.60.1",
3
+ "version": "1.60.2-snapshot-1",
4
4
  "private": false,
5
5
  "description": "Commandline tool",
6
6
  "main": "build/main.js",