inflight-cli 1.0.1 → 1.0.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.
@@ -99,8 +99,8 @@ export async function shareCommand() {
99
99
  process.exit(1);
100
100
  });
101
101
  p.note(result.inflightUrl, "Your Inflight version");
102
- p.outro(pc.green("✓ Done") + " — opening Inflight...");
102
+ p.outro(pc.green("✓ Done") + " — opening staging URL...");
103
103
  const { default: open } = await import("open");
104
- await open(result.inflightUrl);
104
+ await open(stagingUrl);
105
105
  process.exit(0);
106
106
  }
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ import { shareCommand } from "./commands/share.js";
5
5
  const program = new Command();
6
6
  program
7
7
  .name("inflight")
8
- .description("Create and share design versions from the terminal")
8
+ .description("Get feedback directly on your staging URL")
9
9
  .version("0.1.0");
10
10
  program
11
11
  .command("login")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inflight-cli",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Get feedback directly on your staging URL",
5
5
  "bin": {
6
6
  "inflight": "dist/index.js"