@akshxy/envgit 0.6.0 → 0.6.1

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 +4 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -15,7 +15,7 @@ npm install -g @akshxy/envgit
15
15
  - Secrets are encrypted with **AES-256-GCM** and live in `.envgit/` — safe to commit
16
16
  - The key lives on **your machine only** (`~/.config/envgit/keys/`) — never touches the repo
17
17
  - Onboard a teammate in one command: `envgit share` → send them the link → they run `envgit join`
18
- - `envgit unpack dev` writes a clean, **beautifully formatted `.env`** grouped by service
18
+ - `envgit unpack` writes a clean, **beautifully formatted `.env`** grouped by service
19
19
 
20
20
  ---
21
21
 
@@ -35,8 +35,9 @@ envgit set -f .env.local
35
35
  git add .envgit/
36
36
  git commit -m "chore: add encrypted env"
37
37
 
38
- # 5. Write .env locally whenever you need it
39
- envgit unpack dev
38
+ # 5. Switch env and write .env locally
39
+ envgit use dev
40
+ envgit unpack
40
41
  ```
41
42
 
42
43
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akshxy/envgit",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Encrypted per-project environment variable manager",
5
5
  "type": "module",
6
6
  "bin": {