inflight-cli 2.0.4 → 2.0.5
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/setup.js +2 -2
- package/package.json +3 -2
package/dist/commands/setup.js
CHANGED
|
@@ -12,11 +12,11 @@ import { isGitRepo } from "../lib/git.js";
|
|
|
12
12
|
import { installSkill } from "../lib/skill.js";
|
|
13
13
|
async function ensureGlobalInstall() {
|
|
14
14
|
try {
|
|
15
|
-
await execAsync("inflight --version");
|
|
15
|
+
await execAsync("inflight-cli --version 2>/dev/null");
|
|
16
16
|
}
|
|
17
17
|
catch {
|
|
18
18
|
try {
|
|
19
|
-
await execAsync("npm install -g inflight-cli");
|
|
19
|
+
await execAsync("npm install -g inflight-cli 2>/dev/null");
|
|
20
20
|
}
|
|
21
21
|
catch {
|
|
22
22
|
// Non-fatal — they can still use npx
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "inflight-cli",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5",
|
|
4
4
|
"description": "Get feedback directly on your staging URL",
|
|
5
5
|
"bin": {
|
|
6
|
-
"inflight": "dist/index.js"
|
|
6
|
+
"inflight": "dist/index.js",
|
|
7
|
+
"inflight-cli": "dist/index.js"
|
|
7
8
|
},
|
|
8
9
|
"main": "./dist/index.js",
|
|
9
10
|
"type": "module",
|