sentry 0.2.0 → 0.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 +42 -3
- package/dist/bin.cjs +497 -0
- package/package.json +11 -4
- package/dist/bin.mjs +0 -218
package/README.md
CHANGED
|
@@ -2,6 +2,33 @@
|
|
|
2
2
|
|
|
3
3
|
A gh-like CLI for Sentry.
|
|
4
4
|
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Install globally with your preferred package manager:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
# npm
|
|
11
|
+
npm install -g sentry
|
|
12
|
+
|
|
13
|
+
# pnpm
|
|
14
|
+
pnpm add -g sentry
|
|
15
|
+
|
|
16
|
+
# yarn
|
|
17
|
+
yarn global add sentry
|
|
18
|
+
|
|
19
|
+
# bun
|
|
20
|
+
bun add -g sentry
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Or run directly without installing:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
npx sentry --help
|
|
27
|
+
pnpm dlx sentry --help
|
|
28
|
+
yarn dlx sentry --help
|
|
29
|
+
bunx sentry --help
|
|
30
|
+
```
|
|
31
|
+
|
|
5
32
|
## Setup
|
|
6
33
|
|
|
7
34
|
```bash
|
|
@@ -32,6 +59,8 @@ sentry auth status # Check auth status
|
|
|
32
59
|
```bash
|
|
33
60
|
sentry org list # List all orgs
|
|
34
61
|
sentry org list --json # Output as JSON
|
|
62
|
+
sentry org view my-org # View organization details
|
|
63
|
+
sentry org view my-org -w # Open organization in browser
|
|
35
64
|
```
|
|
36
65
|
|
|
37
66
|
### Projects
|
|
@@ -40,6 +69,8 @@ sentry org list --json # Output as JSON
|
|
|
40
69
|
sentry project list # List all projects
|
|
41
70
|
sentry project list my-org # List projects in org
|
|
42
71
|
sentry project list --platform javascript # Filter by platform
|
|
72
|
+
sentry project view my-project # View project details
|
|
73
|
+
sentry project view my-project -w # Open project in browser
|
|
43
74
|
```
|
|
44
75
|
|
|
45
76
|
### Issues
|
|
@@ -47,8 +78,16 @@ sentry project list --platform javascript # Filter by platform
|
|
|
47
78
|
```bash
|
|
48
79
|
sentry issue list --org my-org --project my-project # List issues
|
|
49
80
|
sentry issue list --org my-org --project my-project --json
|
|
50
|
-
sentry issue
|
|
51
|
-
sentry issue
|
|
81
|
+
sentry issue view 123456789 # View issue by ID
|
|
82
|
+
sentry issue view PROJ-ABC # View issue by short ID
|
|
83
|
+
sentry issue view 123456789 -w # Open issue in browser
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### Events
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
sentry event view abc123def # View event by ID
|
|
90
|
+
sentry event view abc123def -w # Open event in browser
|
|
52
91
|
```
|
|
53
92
|
|
|
54
93
|
### API
|
|
@@ -71,4 +110,4 @@ See [DEVELOPMENT.md](DEVELOPMENT.md) for detailed development instructions.
|
|
|
71
110
|
|
|
72
111
|
## Config
|
|
73
112
|
|
|
74
|
-
Stored in `~/.sentry
|
|
113
|
+
Stored in `~/.sentry/config.json` (mode 600).
|