@grantx/fleet-cli 0.1.3 → 0.1.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/package.json +2 -2
- package/src/init.js +1 -1
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grantx/fleet-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": ["src/", "bin/"],
|
|
6
6
|
"bin": {
|
|
7
7
|
"fleet": "./bin/fleet"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@grantx/fleet-core": "0.1.
|
|
10
|
+
"@grantx/fleet-core": "0.1.3"
|
|
11
11
|
},
|
|
12
12
|
"engines": {
|
|
13
13
|
"node": ">=22.0.0"
|
package/src/init.js
CHANGED
|
@@ -91,7 +91,7 @@ export default async function init(args) {
|
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
if (!supabaseKey) {
|
|
94
|
-
supabaseKey = await ask('Supabase key (
|
|
94
|
+
supabaseKey = await ask('Supabase API key (sb_secret_... or eyJ...)', '');
|
|
95
95
|
if (!supabaseKey) {
|
|
96
96
|
console.error('\n Error: Supabase key is required. Set FLEET_SUPABASE_KEY or provide it here.');
|
|
97
97
|
rl.close();
|