@webbies.dev/dotenvify 0.3.3 โ 0.3.5
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 +28 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,6 +37,26 @@ cd dotenvify && go build
|
|
|
37
37
|
```
|
|
38
38
|
</details>
|
|
39
39
|
|
|
40
|
+
## ๐ Updating
|
|
41
|
+
|
|
42
|
+
Keep dotenvify up to date with the latest features and fixes:
|
|
43
|
+
|
|
44
|
+
### Self-Update (Recommended)
|
|
45
|
+
```bash
|
|
46
|
+
# Check for available updates
|
|
47
|
+
dotenvify -check-update
|
|
48
|
+
|
|
49
|
+
# Update to the latest version
|
|
50
|
+
dotenvify -update
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
### Via npm
|
|
54
|
+
```bash
|
|
55
|
+
npm update -g @webbies.dev/dotenvify
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
The self-update feature automatically downloads and installs the latest release from GitHub, making it easy to stay current regardless of how you installed dotenvify.
|
|
59
|
+
|
|
40
60
|
## ๐ฎ Usage
|
|
41
61
|
|
|
42
62
|
### Basic File Mode
|
|
@@ -48,6 +68,9 @@ dotenvify your-vars.txt
|
|
|
48
68
|
# Save to a specific file
|
|
49
69
|
dotenvify your-vars.txt custom-output.env
|
|
50
70
|
|
|
71
|
+
# Overwrite existing .env without backup
|
|
72
|
+
dotenvify -f your-vars.txt
|
|
73
|
+
|
|
51
74
|
# Ignore variables with lowercase keys
|
|
52
75
|
dotenvify -nl your-vars.txt
|
|
53
76
|
```
|
|
@@ -70,9 +93,10 @@ dotenvify -azure -url "https://dev.azure.com/your-org/your-project" -group "your
|
|
|
70
93
|
|
|
71
94
|
**Options:**
|
|
72
95
|
- `-out file.env` - Custom output file
|
|
73
|
-
- `-nl` - Ignore lowercase variables
|
|
96
|
+
- `-nl` - Ignore lowercase variables
|
|
74
97
|
- `-export` - Add 'export' prefix
|
|
75
98
|
- `-urls` - Only URL values
|
|
99
|
+
- `-f` - Overwrite output file (default: backup existing file)
|
|
76
100
|
|
|
77
101
|
<details>
|
|
78
102
|
<summary>๐ Security & Authentication Details</summary>
|
|
@@ -88,11 +112,13 @@ Just make sure you're logged in with `az login` before running the tool.
|
|
|
88
112
|
## โจ Features
|
|
89
113
|
|
|
90
114
|
- โก **Fast**: Written in Go
|
|
91
|
-
- ๐ **Azure DevOps**: Direct variable group integration
|
|
115
|
+
- ๐ **Azure DevOps**: Direct variable group integration
|
|
92
116
|
- ๐ **Secure**: Uses existing Azure CLI auth
|
|
93
117
|
- ๐งน **Smart**: Auto-detects input formats
|
|
94
118
|
- ๐ค **Flexible**: Multiple output options
|
|
119
|
+
- ๐พ **Safe**: Auto-backup with incremental counters
|
|
95
120
|
- ๐ฆ **Easy Install**: npm
|
|
121
|
+
- ๐ **Self-Updating**: Built-in update mechanism
|
|
96
122
|
|
|
97
123
|
## ๐ Supported Formats
|
|
98
124
|
|