inflight-cli 2.0.0 → 2.0.1

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/README.md +10 -30
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,44 +2,24 @@
2
2
 
3
3
  Get feedback directly on your staging URL with [Inflight](https://www.inflight.co).
4
4
 
5
- ## Installation
6
-
7
- ```bash
8
- npm install -g inflight-cli
9
- ```
10
-
11
5
  ## Quick Start
12
6
 
13
7
  ```bash
14
- # Log in to your Inflight account
15
- inflight login
16
-
17
- # Add Inflight to your staging URL
18
- inflight share
8
+ npx inflight-cli setup
19
9
  ```
20
10
 
21
- That's it. The CLI will walk you through selecting a staging URL and open it with Inflight attached.
11
+ That's it. The CLI will install itself, log you in, add the widget to your project, and walk you through sharing your first staging URL.
22
12
 
23
13
  ## Commands
24
14
 
25
- ### `inflight login`
26
-
27
- Authenticate with your Inflight account. Opens a browser window to sign in.
28
-
29
- ### `inflight logout`
30
-
31
- Disconnect your Inflight account from this machine.
32
-
33
- ### `inflight share`
34
-
35
- Add Inflight to a staging URL. The CLI will:
36
-
37
- 1. Let you pick from your hosting provider's deployments, or paste any URL
38
- 2. Open the staging URL with Inflight attached
39
-
40
- ### `inflight workspace`
41
-
42
- Switch the active workspace for the current project directory.
15
+ | Command | Description |
16
+ | -------------------- | ------------------------------------ |
17
+ | `inflight setup` | Set up Inflight in your project |
18
+ | `inflight share` | Share a staging URL for feedback |
19
+ | `inflight vercel` | Change your Vercel project |
20
+ | `inflight workspaces`| Change your Inflight workspace |
21
+ | `inflight login` | Log in to your Inflight account |
22
+ | `inflight logout` | Log out of your Inflight account |
43
23
 
44
24
  ## Requirements
45
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inflight-cli",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Get feedback directly on your staging URL",
5
5
  "bin": {
6
6
  "inflight": "dist/index.js"