@captainsafia/burrow 1.1.0 → 1.2.0-preview.12cf29c

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 -0
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -27,7 +27,16 @@ curl -fsSL https://safia.rocks/burrow/install.sh | sh
27
27
  ### Set a secret
28
28
 
29
29
  ```bash
30
+ # KEY=VALUE format
30
31
  burrow set API_KEY=sk-live-abc123
32
+
33
+ # KEY VALUE format (separate arguments)
34
+ burrow set API_KEY sk-live-abc123
35
+
36
+ # KEY only (prompts for value)
37
+ burrow set API_KEY
38
+
39
+ # With a specific path
31
40
  burrow set DATABASE_URL=postgres://localhost/mydb --path ~/projects
32
41
  ```
33
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@captainsafia/burrow",
3
- "version": "1.1.0",
3
+ "version": "1.2.0-preview.12cf29c",
4
4
  "description": "Platform-agnostic, directory-scoped secrets manager",
5
5
  "type": "module",
6
6
  "main": "dist/api.js",
@@ -52,6 +52,7 @@
52
52
  "license": "MIT",
53
53
  "dependencies": {
54
54
  "clipboardy": "^5.0.2",
55
- "commander": "^14.0.2"
55
+ "commander": "^14.0.2",
56
+ "gh-release-update-notifier": "^1.0.0"
56
57
  }
57
58
  }