sentry 0.35.0 → 0.37.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 +6 -0
- package/dist/index.cjs +1829 -1002
- package/dist/index.d.cts +407 -13
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -33,13 +33,19 @@ brew install getsentry/tools/sentry
|
|
|
33
33
|
```bash
|
|
34
34
|
npm install -g sentry
|
|
35
35
|
pnpm add -g sentry
|
|
36
|
+
yarn global add sentry
|
|
36
37
|
bun add -g sentry
|
|
37
38
|
```
|
|
38
39
|
|
|
40
|
+
> The npm/pnpm/yarn packages require Node.js 22.15+.
|
|
41
|
+
|
|
39
42
|
### Run Without Installing
|
|
40
43
|
|
|
41
44
|
```bash
|
|
42
45
|
npx sentry@latest
|
|
46
|
+
pnpm dlx sentry --help
|
|
47
|
+
yarn dlx sentry --help
|
|
48
|
+
bunx sentry --help
|
|
43
49
|
```
|
|
44
50
|
|
|
45
51
|
## Quick Start
|