@topogram/cli 0.3.35 → 0.3.36

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/package.json +1 -1
  2. package/src/cli.js +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@topogram/cli",
3
- "version": "0.3.35",
3
+ "version": "0.3.36",
4
4
  "description": "Topogram CLI for checking Topogram workspaces and generating app bundles.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
package/src/cli.js CHANGED
@@ -629,19 +629,19 @@ function printCatalogAuthSetup() {
629
629
  console.log("Topogram catalog auth setup");
630
630
  console.log("");
631
631
  console.log("The default Topogram catalog is public and does not require GitHub auth.");
632
- console.log("Private GitHub catalog reads use GITHUB_TOKEN, GH_TOKEN, or `gh auth token`.");
632
+ console.log("Restricted GitHub catalog reads use GITHUB_TOKEN, GH_TOKEN, or `gh auth token`.");
633
633
  console.log("");
634
- console.log("Private catalog local setup:");
634
+ console.log("Restricted catalog local setup:");
635
635
  console.log(" gh auth login");
636
636
  console.log(" topogram catalog list");
637
637
  console.log("");
638
- console.log("Private catalog GitHub Actions setup:");
638
+ console.log("Restricted catalog GitHub Actions setup:");
639
639
  console.log(" permissions:");
640
640
  console.log(" contents: read");
641
641
  console.log(" env:");
642
642
  console.log(" GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}");
643
643
  console.log("");
644
- console.log("For private catalog repos, grant the workflow token or PAT read access to the catalog repository.");
644
+ console.log("For restricted catalog repositories, grant the workflow token or PAT read access.");
645
645
  console.log("Run `topogram catalog doctor` after setup.");
646
646
  }
647
647