resend-cli 1.3.0 → 1.3.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.
- package/README.md +5 -5
- package/dist/cli.cjs +229 -206
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -53,13 +53,13 @@ Use this when you want to change the CLI and run your build locally.
|
|
|
53
53
|
2. **Install dependencies**
|
|
54
54
|
|
|
55
55
|
```bash
|
|
56
|
-
|
|
56
|
+
pnpm install
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
3. **Build locally**
|
|
60
60
|
|
|
61
61
|
```bash
|
|
62
|
-
|
|
62
|
+
pnpm build
|
|
63
63
|
```
|
|
64
64
|
|
|
65
65
|
Output: `./dist/cli.cjs`
|
|
@@ -69,7 +69,7 @@ Use this when you want to change the CLI and run your build locally.
|
|
|
69
69
|
Use the dev script:
|
|
70
70
|
|
|
71
71
|
```bash
|
|
72
|
-
|
|
72
|
+
pnpm dev -- --version
|
|
73
73
|
```
|
|
74
74
|
|
|
75
75
|
Or run the built JS bundle:
|
|
@@ -83,7 +83,7 @@ node dist/cli.cjs --version
|
|
|
83
83
|
After editing source files, rebuild:
|
|
84
84
|
|
|
85
85
|
```bash
|
|
86
|
-
|
|
86
|
+
pnpm build
|
|
87
87
|
```
|
|
88
88
|
|
|
89
89
|
### Building native binaries
|
|
@@ -91,7 +91,7 @@ npm run build
|
|
|
91
91
|
To build a standalone native binary:
|
|
92
92
|
|
|
93
93
|
```bash
|
|
94
|
-
|
|
94
|
+
pnpm build:bin
|
|
95
95
|
```
|
|
96
96
|
|
|
97
97
|
Output: `./dist/resend`
|