pullfrog 0.0.195-beta.2 → 0.0.195-beta.3

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/dist/cli.mjs +8 -8
  2. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -144992,7 +144992,7 @@ var import_semver = __toESM(require_semver2(), 1);
144992
144992
  // package.json
144993
144993
  var package_default = {
144994
144994
  name: "pullfrog",
144995
- version: "0.0.195-beta.2",
144995
+ version: "0.0.195-beta.3",
144996
144996
  type: "module",
144997
144997
  bin: {
144998
144998
  pullfrog: "dist/cli.mjs",
@@ -153360,19 +153360,19 @@ async function ensureInstallation(ctx) {
153360
153360
  isOrg: initial.isOrg
153361
153361
  });
153362
153362
  if (initial.repositorySelection === "selected") {
153363
- activeSpin.stop("checked installation");
153363
+ activeSpin.stop(`pullfrog is installed on selected repos \u2014 ${repoRef} is not in the list`);
153364
+ process.stdout.write(`${import_picocolors.default.gray(d2)} ${link(import_picocolors.default.dim(configUrl), configUrl)}
153365
+ `);
153364
153366
  const proceed = await ot2({
153365
- message: `pullfrog is installed on selected repos only
153366
- ${repoRef} is not in the list \u2014 you'll need to add it
153367
- ${import_picocolors.default.dim(configUrl)}`,
153367
+ message: "open browser to add it?",
153368
153368
  active: "open",
153369
153369
  inactive: "cancel"
153370
153370
  });
153371
153371
  handleCancel(proceed);
153372
153372
  if (!proceed) bail("canceled.");
153373
153373
  } else {
153374
- activeSpin.stop(`pullfrog app doesn't have access to ${repoRef}`);
153375
- O2.info(`update your pullfrog installation to include this repo:
153374
+ activeSpin.stop(`pullfrog is installed on selected repos, but ${repoRef} is not included`);
153375
+ O2.info(`add it via GitHub's installation config page
153376
153376
  ${import_picocolors.default.dim(configUrl)}`);
153377
153377
  }
153378
153378
  openBrowser(configUrl);
@@ -153832,7 +153832,7 @@ async function run2() {
153832
153832
  }
153833
153833
 
153834
153834
  // cli.ts
153835
- var VERSION10 = "0.0.195-beta.2";
153835
+ var VERSION10 = "0.0.195-beta.3";
153836
153836
  var bin = basename2(process.argv[1] || "");
153837
153837
  var PROG = bin === "pf" || bin === "pullfrog" ? bin : "pullfrog";
153838
153838
  var rawArgs = process.argv.slice(2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pullfrog",
3
- "version": "0.0.195-beta.2",
3
+ "version": "0.0.195-beta.3",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "pullfrog": "dist/cli.mjs",