pullfrog 0.0.195-beta.1 → 0.0.195-beta.2

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 +7 -7
  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.1",
144995
+ version: "0.0.195-beta.2",
144996
144996
  type: "module",
144997
144997
  bin: {
144998
144998
  pullfrog: "dist/cli.mjs",
@@ -153373,7 +153373,7 @@ ${import_picocolors.default.dim(configUrl)}`,
153373
153373
  } else {
153374
153374
  activeSpin.stop(`pullfrog app doesn't have access to ${repoRef}`);
153375
153375
  O2.info(`update your pullfrog installation to include this repo:
153376
- ${configUrl}`);
153376
+ ${import_picocolors.default.dim(configUrl)}`);
153377
153377
  }
153378
153378
  openBrowser(configUrl);
153379
153379
  } else {
@@ -153596,7 +153596,7 @@ async function handleSecret(ctx) {
153596
153596
  activeSpin.stop(import_picocolors.default.red("could not save secret"));
153597
153597
  O2.warn(
153598
153598
  `${error49 instanceof Error ? error49.message : "network error"}
153599
- ${import_picocolors.default.dim("set it manually at:")} ${PULLFROG_API_URL}/console/${ctx.owner}`
153599
+ set it manually at: ${import_picocolors.default.dim(`${PULLFROG_API_URL}/console/${ctx.owner}`)}`
153600
153600
  );
153601
153601
  return;
153602
153602
  }
@@ -153607,7 +153607,7 @@ async function handleSecret(ctx) {
153607
153607
  activeSpin.stop(import_picocolors.default.red("could not save secret"));
153608
153608
  O2.warn(
153609
153609
  `${saveResult.error}
153610
- ${import_picocolors.default.dim("set it manually at:")} ${PULLFROG_API_URL}/console/${ctx.owner}`
153610
+ set it manually at: ${import_picocolors.default.dim(`${PULLFROG_API_URL}/console/${ctx.owner}`)}`
153611
153611
  );
153612
153612
  }
153613
153613
  return;
@@ -153662,8 +153662,8 @@ async function promptTestRun(ctx) {
153662
153662
  }
153663
153663
  activeSpin.stop("test run dispatched");
153664
153664
  if (result.data.url) {
153665
- activeSpin.start("");
153666
- activeSpin.stop(link(result.data.url, result.data.url));
153665
+ process.stdout.write(`${import_picocolors.default.gray(d2)} ${link(import_picocolors.default.dim(result.data.url), result.data.url)}
153666
+ `);
153667
153667
  openBrowser(result.data.url);
153668
153668
  }
153669
153669
  }
@@ -153832,7 +153832,7 @@ async function run2() {
153832
153832
  }
153833
153833
 
153834
153834
  // cli.ts
153835
- var VERSION10 = "0.0.195-beta.1";
153835
+ var VERSION10 = "0.0.195-beta.2";
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.1",
3
+ "version": "0.0.195-beta.2",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "pullfrog": "dist/cli.mjs",