sentry 0.30.0 → 0.32.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.
- package/README.md +2 -2
- package/dist/index.cjs +1039 -913
- package/dist/index.d.cts +240 -46
- package/package.json +8 -3
package/README.md
CHANGED
|
@@ -133,10 +133,10 @@ bun install
|
|
|
133
133
|
|
|
134
134
|
```bash
|
|
135
135
|
# Run CLI in development mode
|
|
136
|
-
bun run
|
|
136
|
+
bun run cli --help
|
|
137
137
|
|
|
138
138
|
# With environment variables
|
|
139
|
-
bun run --env-file=.env.local
|
|
139
|
+
bun run --env-file=.env.local cli --help
|
|
140
140
|
```
|
|
141
141
|
|
|
142
142
|
### Scripts
|