@firestartr/cli 2.6.2 → 2.6.3-snapshot-4
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.
package/build/index.js
CHANGED
|
@@ -288758,6 +288758,7 @@ class GithubRepositoryChart extends BaseGithubChart {
|
|
|
288758
288758
|
archiveOnDestroy: claim.providers.github.archiveOnDestroy,
|
|
288759
288759
|
allowUpdateBranch: claim.providers.github.allowUpdateBranch,
|
|
288760
288760
|
hasIssues: claim.providers.github.hasIssues,
|
|
288761
|
+
hasWiki: claim.providers.github.hasWiki,
|
|
288761
288762
|
visibility: claim.providers.github.visibility,
|
|
288762
288763
|
defaultBranch: claim.providers.github?.branchStrategy?.defaultBranch,
|
|
288763
288764
|
codeowners: createCodeOwnersData(claim),
|
|
@@ -303558,7 +303559,7 @@ const crs_analyzerSubcommand = {
|
|
|
303558
303559
|
};
|
|
303559
303560
|
|
|
303560
303561
|
;// CONCATENATED MODULE: ./package.json
|
|
303561
|
-
const package_namespaceObject = {"i8":"2.6.
|
|
303562
|
+
const package_namespaceObject = JSON.parse('{"i8":"2.6.3-snapshot-4"}');
|
|
303562
303563
|
;// CONCATENATED MODULE: ../../package.json
|
|
303563
303564
|
const package_namespaceObject_1 = {"i8":"2.6.2"};
|
|
303564
303565
|
;// CONCATENATED MODULE: ./src/subcommands/index.ts
|
|
@@ -21,6 +21,7 @@ export interface IGithubRepositoryClaim extends IComponentClaim {
|
|
|
21
21
|
archiveOnDestroy: boolean;
|
|
22
22
|
allowUpdateBranch: boolean;
|
|
23
23
|
hasIssues: boolean;
|
|
24
|
+
hasWiki: boolean;
|
|
24
25
|
features: IClaimInstalledFeature[];
|
|
25
26
|
pages: IRepositoryPage;
|
|
26
27
|
branchStrategy: IComponentClaimBranchStrategy;
|