@supacloud/cli 0.7.0 → 0.8.0
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/index.js +2 -8
- package/package.json +2 -3
package/dist/index.js
CHANGED
|
@@ -14,9 +14,6 @@ var __export = (target, all) => {
|
|
|
14
14
|
});
|
|
15
15
|
};
|
|
16
16
|
|
|
17
|
-
// src/index.ts
|
|
18
|
-
import path from "node:path";
|
|
19
|
-
|
|
20
17
|
// node_modules/zod/v4/classic/external.js
|
|
21
18
|
var exports_external = {};
|
|
22
19
|
__export(exports_external, {
|
|
@@ -16908,9 +16905,8 @@ Actions: routes, upsert_route, update_route, delete_route, config, get_certifica
|
|
|
16908
16905
|
}
|
|
16909
16906
|
|
|
16910
16907
|
// src/index.ts
|
|
16911
|
-
var
|
|
16912
|
-
var
|
|
16913
|
-
var preferredCommand = "supacloud-cli";
|
|
16908
|
+
var commandName = "supacloud-cli";
|
|
16909
|
+
var preferredCommand = commandName;
|
|
16914
16910
|
var projectActionSchema = exports_external.enum([
|
|
16915
16911
|
"get",
|
|
16916
16912
|
"health",
|
|
@@ -16957,8 +16953,6 @@ function printHelp(context = resolveSupaCloudContext()) {
|
|
|
16957
16953
|
║ Project CLI for SupaCloud users ║
|
|
16958
16954
|
╚═══════════════════════════════════════════════════════════╝
|
|
16959
16955
|
|
|
16960
|
-
${commandName === "supacloud" ? "NOTE\n\n `supacloud` is kept as a compatibility alias. Prefer `supacloud-cli`\n to avoid confusion with the server binary at /usr/local/bin/supacloud.\n" : ""}
|
|
16961
|
-
|
|
16962
16956
|
USAGE
|
|
16963
16957
|
|
|
16964
16958
|
${preferredCommand} <module> <action> [--flags]
|
package/package.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@supacloud/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Project-scoped CLI for SupaCloud users",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
|
-
"supacloud-cli": "dist/index.js"
|
|
9
|
-
"supacloud": "dist/index.js"
|
|
8
|
+
"supacloud-cli": "dist/index.js"
|
|
10
9
|
},
|
|
11
10
|
"files": [
|
|
12
11
|
"dist",
|