@firestartr/cli 2.7.0-snapshot-12 → 2.7.0-snapshot-13

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 +7 -3
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -288783,7 +288783,9 @@ class GithubRepositoryChart extends BaseGithubChart {
288783
288783
  allowUpdateBranch: claim.providers.github.allowUpdateBranch,
288784
288784
  hasIssues: claim.providers.github.hasIssues,
288785
288785
  hasWiki: claim.providers.github.hasWiki,
288786
- hasDiscussions: claim.providers.github.hasDiscussions,
288786
+ ...(claim.providers.github.hasDiscussions !== undefined && {
288787
+ hasDiscussions: claim.providers.github.hasDiscussions,
288788
+ }),
288787
288789
  visibility: claim.providers.github.visibility,
288788
288790
  defaultBranch: claim.providers.github?.branchStrategy?.defaultBranch,
288789
288791
  codeowners: createCodeOwnersData(claim),
@@ -291169,7 +291171,9 @@ class RepoGithubDecanter extends GithubDecanter {
291169
291171
  },
291170
291172
  topics: this.data.repoDetails.topics,
291171
291173
  hasWiki: this.data.repoDetails.has_wiki,
291172
- hasDiscussions: this.data.repoDetails.has_discussions,
291174
+ ...(this.data.repoDetails.has_discussions === true && {
291175
+ hasDiscussions: true,
291176
+ }),
291173
291177
  },
291174
291178
  },
291175
291179
  path: '/providers',
@@ -303602,7 +303606,7 @@ const crs_analyzerSubcommand = {
303602
303606
  };
303603
303607
 
303604
303608
  ;// CONCATENATED MODULE: ./package.json
303605
- const package_namespaceObject = JSON.parse('{"i8":"2.7.0-snapshot-12"}');
303609
+ const package_namespaceObject = JSON.parse('{"i8":"2.7.0-snapshot-13"}');
303606
303610
  ;// CONCATENATED MODULE: ../../package.json
303607
303611
  const package_namespaceObject_1 = {"i8":"2.6.4"};
303608
303612
  ;// CONCATENATED MODULE: ./src/subcommands/index.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestartr/cli",
3
- "version": "2.7.0-snapshot-12",
3
+ "version": "2.7.0-snapshot-13",
4
4
  "private": false,
5
5
  "description": "Commandline tool",
6
6
  "main": "build/main.js",