@firestartr/cli 1.50.1-snapshot-12 → 1.50.1-snapshot-14

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 +2 -2
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -289791,7 +289791,7 @@ function toYaml(data, opts = {}) {
289791
289791
  }
289792
289792
  function dumpYaml(data) {
289793
289793
  src_logger.debug('Dumping object data to YAML %O', data);
289794
- return yaml_dist.stringify(data);
289794
+ return yaml_dist.stringify(data, { defaultStringType: 'QUOTE_DOUBLE' });
289795
289795
  }
289796
289796
 
289797
289797
  // EXTERNAL MODULE: external "child_process"
@@ -310353,7 +310353,7 @@ function getClaimPathFromCR(claimsBasePath, cr) {
310353
310353
  FirestartrGithubRepository: 'components',
310354
310354
  FirestartrGithubMembership: 'users',
310355
310355
  };
310356
- return external_path_.join(claimsBasePath, mapCrsToClaims[cr.kind], `${cr.metadata.annotations[catalog_common.generic.getFirestartrAnnotation('external-name')]}.yaml`.toLowerCase());
310356
+ return external_path_.join(claimsBasePath, mapCrsToClaims[cr.kind], `${cr.metadata.labels['claim-ref']}.yaml`.toLowerCase());
310357
310357
  }
310358
310358
  function getCrPath(crsBasePath, cr) {
310359
310359
  return external_path_.join(crsBasePath, `${cr.kind}.${cr.metadata.name}.yaml`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestartr/cli",
3
- "version": "1.50.1-snapshot-12",
3
+ "version": "1.50.1-snapshot-14",
4
4
  "private": false,
5
5
  "description": "Commandline tool",
6
6
  "main": "build/main.js",