@webbies.dev/dotenvify 0.3.3 โ†’ 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 +7 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -48,6 +48,9 @@ dotenvify your-vars.txt
48
48
  # Save to a specific file
49
49
  dotenvify your-vars.txt custom-output.env
50
50
 
51
+ # Overwrite existing .env without backup
52
+ dotenvify -f your-vars.txt
53
+
51
54
  # Ignore variables with lowercase keys
52
55
  dotenvify -nl your-vars.txt
53
56
  ```
@@ -70,9 +73,10 @@ dotenvify -azure -url "https://dev.azure.com/your-org/your-project" -group "your
70
73
 
71
74
  **Options:**
72
75
  - `-out file.env` - Custom output file
73
- - `-nl` - Ignore lowercase variables
76
+ - `-nl` - Ignore lowercase variables
74
77
  - `-export` - Add 'export' prefix
75
78
  - `-urls` - Only URL values
79
+ - `-f` - Overwrite output file (default: backup existing file)
76
80
 
77
81
  <details>
78
82
  <summary>๐Ÿ”’ Security & Authentication Details</summary>
@@ -88,10 +92,11 @@ Just make sure you're logged in with `az login` before running the tool.
88
92
  ## โœจ Features
89
93
 
90
94
  - โšก **Fast**: Written in Go
91
- - ๐Ÿ”„ **Azure DevOps**: Direct variable group integration
95
+ - ๐Ÿ”„ **Azure DevOps**: Direct variable group integration
92
96
  - ๐Ÿ”’ **Secure**: Uses existing Azure CLI auth
93
97
  - ๐Ÿงน **Smart**: Auto-detects input formats
94
98
  - ๐Ÿ”ค **Flexible**: Multiple output options
99
+ - ๐Ÿ’พ **Safe**: Auto-backup with incremental counters
95
100
  - ๐Ÿ“ฆ **Easy Install**: npm
96
101
 
97
102
  ## ๐Ÿ“ Supported Formats
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.4",
4
4
  "description": "A utility to convert environment variables from various sources into different formats",
5
5
  "bin": {
6
6
  "dotenvify": "./dotenvify"