@firestartr/cli 1.60.0 → 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 +8 -4
  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() {
@@ -374037,7 +374041,7 @@ function walker_walk(value, resolveScalar) {
374037
374041
  if (Array.isArray(value)) {
374038
374042
  return walkList(value, resolveScalar);
374039
374043
  }
374040
- else if (typeof value === 'object') {
374044
+ else if (typeof value === 'object' && value !== null) {
374041
374045
  return walker_walkObject(value, resolveScalar);
374042
374046
  }
374043
374047
  else {
@@ -377297,9 +377301,9 @@ const crs_analyzerSubcommand = {
377297
377301
  };
377298
377302
 
377299
377303
  ;// CONCATENATED MODULE: ./package.json
377300
- const package_namespaceObject = {"i8":"1.60.0"};
377304
+ const package_namespaceObject = JSON.parse('{"i8":"1.60.2-snapshot-1"}');
377301
377305
  ;// CONCATENATED MODULE: ../../package.json
377302
- const package_namespaceObject_1 = {"i8":"1.60.0"};
377306
+ const package_namespaceObject_1 = {"i8":"1.60.1"};
377303
377307
  ;// CONCATENATED MODULE: ./src/subcommands/index.ts
377304
377308
 
377305
377309
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestartr/cli",
3
- "version": "1.60.0",
3
+ "version": "1.60.2-snapshot-1",
4
4
  "private": false,
5
5
  "description": "Commandline tool",
6
6
  "main": "build/main.js",