herdux-cli 0.1.1 → 0.2.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/README.md CHANGED
@@ -14,9 +14,9 @@ A fast, interactive CLI that removes friction from daily local database workflow
14
14
 
15
15
  > Optimized for local and development environments. Production use is supported with explicit configuration.
16
16
 
17
- <p align="center">
17
+ <!-- <p align="center">
18
18
  <img src=".github/herdux.gif" alt="herdux terminal gif" width="1220" />
19
- </p>
19
+ </p> -->
20
20
 
21
21
  ---
22
22
 
@@ -24,7 +24,9 @@ A fast, interactive CLI that removes friction from daily local database workflow
24
24
 
25
25
  ```bash
26
26
  npm install -g herdux-cli
27
- herdux doctor
27
+
28
+ # You can use either 'herdux' or the shorter 'hdx' alias
29
+ hdx doctor
28
30
  herdux list
29
31
  ```
30
32
 
@@ -134,6 +136,8 @@ If you manage databases locally, Herdux was created to solve your pain.
134
136
 
135
137
  **npm (recommended):**
136
138
 
139
+ > **⚠️ IMPORTANT:** You must use the `-g` (global) flag for the CLI to be accessible anywhere in your terminal.
140
+
137
141
  ```bash
138
142
  npm install -g herdux-cli
139
143
  ```
package/README.pt-BR.md CHANGED
@@ -14,9 +14,9 @@ Uma CLI rápida e interativa que remove a fricção dos workflows diários com b
14
14
 
15
15
  > Otimizado para ambientes locais e de desenvolvimento. O uso em produção é suportado com configuração explícita.
16
16
 
17
- <p align="center">
17
+ <!-- <p align="center">
18
18
  <img src=".github/herdux.gif" alt="herdux terminal gif" width="1220" />
19
- </p>
19
+ </p> -->
20
20
 
21
21
  ---
22
22
 
@@ -24,7 +24,9 @@ Uma CLI rápida e interativa que remove a fricção dos workflows diários com b
24
24
 
25
25
  ```bash
26
26
  npm install -g herdux-cli
27
- herdux doctor
27
+
28
+ # Você pode usar 'herdux' ou o alias mais curto 'hdx'
29
+ hdx doctor
28
30
  herdux list
29
31
  ```
30
32
 
@@ -133,6 +135,8 @@ O **Herdux** trata operações destrutivas com cuidado:
133
135
 
134
136
  **npm (recomendado):**
135
137
 
138
+ > **⚠️ IMPORTANTE:** Você precisa usar a flag `-g` (global) para que a CLI fique disponível no seu terminal.
139
+
136
140
  ```bash
137
141
  npm install -g herdux-cli
138
142
  ```
package/dist/index.js CHANGED
@@ -14,7 +14,7 @@ program
14
14
  .name("herdux")
15
15
  .helpCommand(false)
16
16
  .description("A modern CLI to Database management")
17
- .version("0.1.1")
17
+ .version("0.1.2")
18
18
  .option("-H, --host <host>", "Database host")
19
19
  .option("-p, --port <port>", "Database port (auto-detected if omitted)")
20
20
  .option("-U, --user <user>", "Database user")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "herdux-cli",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "description": "Modern Database workflow CLI focused on developer experience, safety, and automation.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,7 +9,8 @@
9
9
  "type": "module",
10
10
  "main": "./dist/index.js",
11
11
  "bin": {
12
- "herdux": "./dist/index.js"
12
+ "herdux": "dist/index.js",
13
+ "hdx": "dist/index.js"
13
14
  },
14
15
  "files": [
15
16
  "dist",