cf-envsync 0.1.0 → 0.2.0

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 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -47,7 +47,14 @@ Every existing tool solves one piece. **envsync connects them all.**
47
47
  ## Quick Start
48
48
 
49
49
  ```bash
50
+ # bun
50
51
  bun add -d cf-envsync
52
+
53
+ # npm
54
+ npm install -D cf-envsync
55
+
56
+ # pnpm
57
+ pnpm add -D cf-envsync
51
58
  ```
52
59
 
53
60
  ```bash
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "cf-envsync",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Sync .env files to Cloudflare Workers secrets, .dev.vars, and more",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  ".": "./src/define-config.ts"
8
8
  },
9
9
  "bin": {
10
- "envsync": "./dist/index.js"
10
+ "envsync": "dist/index.js"
11
11
  },
12
12
  "files": [
13
13
  "dist",