@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.
Files changed (2) hide show
  1. package/README.md +28 -2
  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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webbies.dev/dotenvify",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
4
4
  "description": "A utility to convert environment variables from various sources into different formats",
5
5
  "bin": {
6
6
  "dotenvify": "./dotenvify"