onveloz 0.0.0-beta.40 → 0.0.0-beta.41
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.mjs +5 -5
- package/package.json +4 -2
package/dist/index.mjs
CHANGED
|
@@ -1335,7 +1335,7 @@ async function requireAuth(options) {
|
|
|
1335
1335
|
|
|
1336
1336
|
//#endregion
|
|
1337
1337
|
//#region src/lib/client.ts
|
|
1338
|
-
const CLI_VERSION = "0.0.0-beta.
|
|
1338
|
+
const CLI_VERSION = "0.0.0-beta.41";
|
|
1339
1339
|
const USER_AGENT = `veloz-cli/${CLI_VERSION}`;
|
|
1340
1340
|
/**
|
|
1341
1341
|
* Client source — "cli" by default; the init wizard sets this to "cli-wizard"
|
|
@@ -24796,7 +24796,7 @@ const LOGO_LINES$1 = [
|
|
|
24796
24796
|
];
|
|
24797
24797
|
const BRAND_COLOR$1 = "#FF4D00";
|
|
24798
24798
|
function getVersion() {
|
|
24799
|
-
return "0.0.0-beta.
|
|
24799
|
+
return "0.0.0-beta.41";
|
|
24800
24800
|
}
|
|
24801
24801
|
function printBanner(subtitle) {
|
|
24802
24802
|
const version$2 = getVersion();
|
|
@@ -25944,7 +25944,7 @@ async function fetchLatestVersion() {
|
|
|
25944
25944
|
}
|
|
25945
25945
|
}
|
|
25946
25946
|
function getCurrentVersion() {
|
|
25947
|
-
return "0.0.0-beta.
|
|
25947
|
+
return "0.0.0-beta.41";
|
|
25948
25948
|
}
|
|
25949
25949
|
/**
|
|
25950
25950
|
* Install a specific CLI version. Returns true on success.
|
|
@@ -31084,7 +31084,7 @@ function PickerMenu({ items, onSelect, onCancel }) {
|
|
|
31084
31084
|
|
|
31085
31085
|
//#endregion
|
|
31086
31086
|
//#region src/wizard/ui/primitives/ScreenLayout.tsx
|
|
31087
|
-
const version = "0.0.0-beta.
|
|
31087
|
+
const version = "0.0.0-beta.41";
|
|
31088
31088
|
const LOGO_LINES = [
|
|
31089
31089
|
"██╗ ██╗███████╗██╗ ██████╗ ███████╗",
|
|
31090
31090
|
"██║ ██║██╔════╝██║ ██╔═══██╗╚══███╔╝",
|
|
@@ -35750,7 +35750,7 @@ async function runOrgCreationFlow(store, apiUrl) {
|
|
|
35750
35750
|
//#region src/index.ts
|
|
35751
35751
|
if (process.argv.includes("--mcp")) process.env.VELOZ_MCP = "true";
|
|
35752
35752
|
const cli = Cli.create("veloz", {
|
|
35753
|
-
version: "0.0.0-beta.
|
|
35753
|
+
version: "0.0.0-beta.41",
|
|
35754
35754
|
description: "CLI da plataforma Veloz — deploy rápido para o Brasil",
|
|
35755
35755
|
env: z.object({ VELOZ_ENV: z.string().optional().describe("Ambiente alvo (ex: preview, staging)") }),
|
|
35756
35756
|
globals: z.object({ env: z.string().optional().describe("Ambiente alvo (ex: preview, staging)") }),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "onveloz",
|
|
3
|
-
"version": "0.0.0-beta.
|
|
3
|
+
"version": "0.0.0-beta.41",
|
|
4
4
|
"description": "CLI da plataforma Veloz — deploy rápido para o Brasil",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"brasil",
|
|
@@ -19,10 +19,12 @@
|
|
|
19
19
|
"type": "module",
|
|
20
20
|
"scripts": {
|
|
21
21
|
"build": "tsdown",
|
|
22
|
+
"check:publish": "vitest run src/lib/package-manifest.test.ts",
|
|
22
23
|
"dev": "tsx src/index.ts",
|
|
23
24
|
"start": "tsx src/index.ts",
|
|
24
25
|
"check-types": "tsc -b",
|
|
25
26
|
"mcp:doctor": "node dist/index.mjs mcp doctor --format json",
|
|
27
|
+
"prepublishOnly": "pnpm run check:publish",
|
|
26
28
|
"release": "bumpp",
|
|
27
29
|
"test": "vitest run"
|
|
28
30
|
},
|
|
@@ -36,7 +38,7 @@
|
|
|
36
38
|
"ink": "^6.8.0",
|
|
37
39
|
"nanostores": "^0.11.3",
|
|
38
40
|
"ora": "^8.2.0",
|
|
39
|
-
"react": "
|
|
41
|
+
"react": "19.2.5",
|
|
40
42
|
"tar": "^6.2.0",
|
|
41
43
|
"ws": "^8.20.0",
|
|
42
44
|
"zod": "^4.1.13"
|