@vibedhost/cli 1.0.0 → 1.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 (3) hide show
  1. package/dist/index.js +11 -10
  2. package/package.json +2 -2
  3. package/src/index.ts +11 -10
package/dist/index.js CHANGED
@@ -57,12 +57,13 @@ Website: https://www.vibedhost.com
57
57
  Dashboard: https://www.vibedhost.com/dashboard/workspaces
58
58
 
59
59
  Usage:
60
- npx vibed [command] [options]
60
+ npx @vibedhost/cli [command] [options]
61
+ vibed [command] [options]
61
62
 
62
63
  Getting Started:
63
64
  1. Create account & workspace: https://www.vibedhost.com/register
64
- 2. Authenticate terminal: npx vibed login
65
- 3. Deploy local project: npx vibed deploy
65
+ 2. Authenticate terminal: npx @vibedhost/cli login
66
+ 3. Deploy local project: npx @vibedhost/cli deploy
66
67
 
67
68
  Commands:
68
69
  login Authenticate this terminal with your VibedHost account
@@ -86,13 +87,13 @@ Inspection Options:
86
87
  --ai Format latest error snippet for AI coding assistants
87
88
 
88
89
  Examples:
89
- npx vibed login
90
- npx vibed deploy
91
- npx vibed deploy ./dist --name frontend-spa
92
- npx vibed status
93
- npx vibed logs my-app
94
- npx vibed logs my-app --ai
95
- npx vibed env set DATABASE_URL=postgresql://...
90
+ npx @vibedhost/cli login
91
+ npx @vibedhost/cli deploy
92
+ npx @vibedhost/cli deploy ./dist --name frontend-spa
93
+ npx @vibedhost/cli status
94
+ npx @vibedhost/cli logs my-app
95
+ npx @vibedhost/cli logs my-app --ai
96
+ npx @vibedhost/cli env set DATABASE_URL=postgresql://...
96
97
  `);
97
98
  }
98
99
  async function handleLogin() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibedhost/cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "VibedHost Cloud Engine CLI — Deploy applications to dedicated cloud workspaces directly from your terminal.",
5
5
  "main": "./dist/index.js",
6
6
  "bin": {
@@ -30,4 +30,4 @@
30
30
  "@types/node": "^20.14.0",
31
31
  "typescript": "^5.4.5"
32
32
  }
33
- }
33
+ }
package/src/index.ts CHANGED
@@ -70,12 +70,13 @@ Website: https://www.vibedhost.com
70
70
  Dashboard: https://www.vibedhost.com/dashboard/workspaces
71
71
 
72
72
  Usage:
73
- npx vibed [command] [options]
73
+ npx @vibedhost/cli [command] [options]
74
+ vibed [command] [options]
74
75
 
75
76
  Getting Started:
76
77
  1. Create account & workspace: https://www.vibedhost.com/register
77
- 2. Authenticate terminal: npx vibed login
78
- 3. Deploy local project: npx vibed deploy
78
+ 2. Authenticate terminal: npx @vibedhost/cli login
79
+ 3. Deploy local project: npx @vibedhost/cli deploy
79
80
 
80
81
  Commands:
81
82
  login Authenticate this terminal with your VibedHost account
@@ -99,13 +100,13 @@ Inspection Options:
99
100
  --ai Format latest error snippet for AI coding assistants
100
101
 
101
102
  Examples:
102
- npx vibed login
103
- npx vibed deploy
104
- npx vibed deploy ./dist --name frontend-spa
105
- npx vibed status
106
- npx vibed logs my-app
107
- npx vibed logs my-app --ai
108
- npx vibed env set DATABASE_URL=postgresql://...
103
+ npx @vibedhost/cli login
104
+ npx @vibedhost/cli deploy
105
+ npx @vibedhost/cli deploy ./dist --name frontend-spa
106
+ npx @vibedhost/cli status
107
+ npx @vibedhost/cli logs my-app
108
+ npx @vibedhost/cli logs my-app --ai
109
+ npx @vibedhost/cli env set DATABASE_URL=postgresql://...
109
110
  `);
110
111
  }
111
112