@firestartr/cli 1.56.1-snapshot-4 → 1.56.1-snapshot-6
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
|
@@ -366465,7 +366465,7 @@ class GroupGithubDecanter extends GithubDecanter {
|
|
|
366465
366465
|
kind: this.claimKind,
|
|
366466
366466
|
version: this.VERSION(),
|
|
366467
366467
|
name: this.data.groupDetails.slug,
|
|
366468
|
-
description: this.data.groupDetails.description,
|
|
366468
|
+
description: this.data.groupDetails.description || '',
|
|
366469
366469
|
type: 'business-unit',
|
|
366470
366470
|
};
|
|
366471
366471
|
}
|
|
@@ -367036,7 +367036,7 @@ async function importGithubGitopsRepository(org, skipPlan, claimsPath, resources
|
|
|
367036
367036
|
const crs = await renderCRs(data);
|
|
367037
367037
|
for (const key in crs) {
|
|
367038
367038
|
let cr = crs[key];
|
|
367039
|
-
const claimName = cr.metadata?.annotations?.[catalog_common.generic.getFirestartrAnnotation('
|
|
367039
|
+
const claimName = cr.metadata?.annotations?.[catalog_common.generic.getFirestartrAnnotation('claim-ref')]?.split('/')[1];
|
|
367040
367040
|
const postRenderFunctions = data.postRender[`${cr.kind}-${claimName}`] || [];
|
|
367041
367041
|
let crModified = false;
|
|
367042
367042
|
for (const postRenderFunction of postRenderFunctions) {
|
|
@@ -367136,9 +367136,9 @@ async function importGithubGroups(org, filters = []) {
|
|
|
367136
367136
|
for (const group of collection) {
|
|
367137
367137
|
await group.gather();
|
|
367138
367138
|
await group.decant();
|
|
367139
|
-
groups.push(await group.adapt());
|
|
367140
367139
|
group.render();
|
|
367141
367140
|
group.postRender();
|
|
367141
|
+
groups.push(await group.adapt());
|
|
367142
367142
|
}
|
|
367143
367143
|
return groups;
|
|
367144
367144
|
}
|
|
@@ -371189,7 +371189,6 @@ async function runCDKTF(entityPath, action, depsPath, stream) {
|
|
|
371189
371189
|
FORCE_COLOR: '0',
|
|
371190
371190
|
DEBUG: process.env.DEBUG,
|
|
371191
371191
|
DEBUG_DEPTH: '0',
|
|
371192
|
-
AVOID_PAT: process.env.AVOID_PAT,
|
|
371193
371192
|
},
|
|
371194
371193
|
});
|
|
371195
371194
|
let output = '';
|
|
@@ -376452,7 +376451,7 @@ const crs_analyzerSubcommand = {
|
|
|
376452
376451
|
};
|
|
376453
376452
|
|
|
376454
376453
|
;// CONCATENATED MODULE: ./package.json
|
|
376455
|
-
const package_namespaceObject = JSON.parse('{"i8":"1.56.1-snapshot-
|
|
376454
|
+
const package_namespaceObject = JSON.parse('{"i8":"1.56.1-snapshot-6"}');
|
|
376456
376455
|
;// CONCATENATED MODULE: ../../package.json
|
|
376457
376456
|
const package_namespaceObject_1 = {"i8":"1.56.0"};
|
|
376458
376457
|
;// CONCATENATED MODULE: ./src/subcommands/index.ts
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { importGithubGitopsRepository } from './src/decanter';
|
|
2
2
|
import type { CollectionFilter } from './src/decanter/collections';
|
|
3
|
-
export { CollectionFilter };
|
|
3
|
+
export type { CollectionFilter };
|
|
4
4
|
declare const _default: {
|
|
5
5
|
importGithubGitopsRepository: typeof importGithubGitopsRepository;
|
|
6
6
|
};
|