inflight-cli 2.0.3 → 2.0.4
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.
- package/dist/commands/vercel.js +1 -0
- package/dist/index.js +1 -1
- package/package.json +2 -3
package/dist/commands/vercel.js
CHANGED
|
@@ -141,6 +141,7 @@ export function registerVercelCommand(program) {
|
|
|
141
141
|
const vercel = program
|
|
142
142
|
.command("vercel")
|
|
143
143
|
.description("Set up or change your Vercel project")
|
|
144
|
+
.passThroughOptions()
|
|
144
145
|
.option("--team <id>", "Vercel team ID (non-interactive)")
|
|
145
146
|
.option("--project <id>", "Vercel project ID (non-interactive)")
|
|
146
147
|
.option("--json", "Output as JSON (non-interactive)")
|
package/dist/index.js
CHANGED
|
@@ -12,7 +12,7 @@ import pkg from "../package.json" with { type: "json" };
|
|
|
12
12
|
const { version } = pkg;
|
|
13
13
|
updateNotifier({ pkg }).notify();
|
|
14
14
|
const program = new Command();
|
|
15
|
-
program.name("inflight").description("Get feedback directly on your staging URL").version(version);
|
|
15
|
+
program.name("inflight").description("Get feedback directly on your staging URL").version(version).enablePositionalOptions();
|
|
16
16
|
program.command("setup").description("Set up Inflight in your project").action(setupCommand);
|
|
17
17
|
program.command("login").description("Authenticate with your Inflight account").action(loginCommand);
|
|
18
18
|
program
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "inflight-cli",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "Get feedback directly on your staging URL",
|
|
5
5
|
"bin": {
|
|
6
6
|
"inflight": "dist/index.js"
|
|
@@ -8,8 +8,7 @@
|
|
|
8
8
|
"main": "./dist/index.js",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"files": [
|
|
11
|
-
"dist"
|
|
12
|
-
"README.md"
|
|
11
|
+
"dist"
|
|
13
12
|
],
|
|
14
13
|
"license": "UNLICENSED",
|
|
15
14
|
"homepage": "https://www.inflight.co",
|