@webbies.dev/dotenvify 0.3.4 → 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 +21 -0
  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
@@ -98,6 +118,7 @@ Just make sure you're logged in with `az login` before running the tool.
98
118
  - 🔤 **Flexible**: Multiple output options
99
119
  - 💾 **Safe**: Auto-backup with incremental counters
100
120
  - 📦 **Easy Install**: npm
121
+ - 🔄 **Self-Updating**: Built-in update mechanism
101
122
 
102
123
  ## 📝 Supported Formats
103
124
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webbies.dev/dotenvify",
3
- "version": "0.3.4",
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"