herdux-cli 0.1.2 → 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 +5 -1
- package/README.pt-BR.md +5 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -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
|
-
|
|
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
|
@@ -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
|
-
|
|
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "herdux-cli",
|
|
3
|
-
"version": "0.
|
|
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": "
|
|
12
|
+
"herdux": "dist/index.js",
|
|
13
|
+
"hdx": "dist/index.js"
|
|
13
14
|
},
|
|
14
15
|
"files": [
|
|
15
16
|
"dist",
|