@webbies.dev/dotenvify 0.3.2 โ†’ 0.3.4

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.
Files changed (2) hide show
  1. package/README.md +9 -19
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -23,27 +23,12 @@ After doing this manually one too many times, I rage-coded this tool. You're wel
23
23
 
24
24
  ## ๐Ÿš€ Installation
25
25
 
26
- ### npm (Recommended)
27
26
  ```bash
28
27
  npm install -g @webbies.dev/dotenvify
29
28
  ```
30
29
 
31
- ### Homebrew (macOS/Linux)
32
- ```bash
33
- brew install webb1es/tap/dotenvify
34
- ```
35
-
36
- ### Scoop (Windows)
37
- ```bash
38
- scoop bucket add webb1es https://github.com/webb1es/scoop-bucket.git
39
- scoop install dotenvify
40
- ```
41
-
42
30
  <details>
43
- <summary>๐Ÿ“ฆ Other Methods</summary>
44
-
45
- #### Direct Download
46
- Download from [GitHub Releases](https://github.com/webb1es/dotenvify/releases)
31
+ <summary>๐Ÿ“ฆ Alternative Methods</summary>
47
32
 
48
33
  #### Build from Source
49
34
  ```bash
@@ -63,6 +48,9 @@ dotenvify your-vars.txt
63
48
  # Save to a specific file
64
49
  dotenvify your-vars.txt custom-output.env
65
50
 
51
+ # Overwrite existing .env without backup
52
+ dotenvify -f your-vars.txt
53
+
66
54
  # Ignore variables with lowercase keys
67
55
  dotenvify -nl your-vars.txt
68
56
  ```
@@ -85,9 +73,10 @@ dotenvify -azure -url "https://dev.azure.com/your-org/your-project" -group "your
85
73
 
86
74
  **Options:**
87
75
  - `-out file.env` - Custom output file
88
- - `-nl` - Ignore lowercase variables
76
+ - `-nl` - Ignore lowercase variables
89
77
  - `-export` - Add 'export' prefix
90
78
  - `-urls` - Only URL values
79
+ - `-f` - Overwrite output file (default: backup existing file)
91
80
 
92
81
  <details>
93
82
  <summary>๐Ÿ”’ Security & Authentication Details</summary>
@@ -103,11 +92,12 @@ Just make sure you're logged in with `az login` before running the tool.
103
92
  ## โœจ Features
104
93
 
105
94
  - โšก **Fast**: Written in Go
106
- - ๐Ÿ”„ **Azure DevOps**: Direct variable group integration
95
+ - ๐Ÿ”„ **Azure DevOps**: Direct variable group integration
107
96
  - ๐Ÿ”’ **Secure**: Uses existing Azure CLI auth
108
97
  - ๐Ÿงน **Smart**: Auto-detects input formats
109
98
  - ๐Ÿ”ค **Flexible**: Multiple output options
110
- - ๐Ÿ“ฆ **Easy Install**: npm, Homebrew, Scoop
99
+ - ๐Ÿ’พ **Safe**: Auto-backup with incremental counters
100
+ - ๐Ÿ“ฆ **Easy Install**: npm
111
101
 
112
102
  ## ๐Ÿ“ Supported Formats
113
103
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webbies.dev/dotenvify",
3
- "version": "0.3.2",
3
+ "version": "0.3.4",
4
4
  "description": "A utility to convert environment variables from various sources into different formats",
5
5
  "bin": {
6
6
  "dotenvify": "./dotenvify"