@firestartr/cli 2.7.0-snapshot-15 → 2.7.0-snapshot-16

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 -1
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -290882,6 +290882,12 @@ async function runRenderer(globalsPath, initializersPath, claimsPath, crsPath, c
290882
290882
  setPath('claimsDefaults', claimsDefaults);
290883
290883
  setRenamesEnabled(renamesEnabled);
290884
290884
  setExcludedPaths(excludedPaths);
290885
+ if (!repositoryUrl) {
290886
+ const org = process.env['ORG'];
290887
+ if (org) {
290888
+ repositoryUrl = `https://github.com/${org}/claims`;
290889
+ }
290890
+ }
290885
290891
  setRepositoryUrl(repositoryUrl);
290886
290892
  setDefaultBranch(defaultBranch ?? 'main');
290887
290893
  const catalogApp = new lib.App({
@@ -304511,7 +304517,7 @@ const crs_analyzerSubcommand = {
304511
304517
  };
304512
304518
 
304513
304519
  ;// CONCATENATED MODULE: ./package.json
304514
- const package_namespaceObject = JSON.parse('{"i8":"2.7.0-snapshot-15"}');
304520
+ const package_namespaceObject = JSON.parse('{"i8":"2.7.0-snapshot-16"}');
304515
304521
  ;// CONCATENATED MODULE: ../../package.json
304516
304522
  const package_namespaceObject_1 = {"i8":"2.6.4"};
304517
304523
  ;// 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-15",
3
+ "version": "2.7.0-snapshot-16",
4
4
  "private": false,
5
5
  "description": "Commandline tool",
6
6
  "main": "build/main.js",