@sentry/junior-sentry 0.63.0 → 0.65.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 +8 -0
- package/package.json +1 -1
- package/plugin.yaml +0 -1
package/README.md
CHANGED
|
@@ -8,6 +8,14 @@ Install it alongside `@sentry/junior`:
|
|
|
8
8
|
pnpm add @sentry/junior @sentry/junior-sentry
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
+
Add the package name to the plugin set exported from `plugins.ts`:
|
|
12
|
+
|
|
13
|
+
```ts
|
|
14
|
+
import { defineJuniorPlugins } from "@sentry/junior";
|
|
15
|
+
|
|
16
|
+
export const plugins = defineJuniorPlugins(["@sentry/junior-sentry"]);
|
|
17
|
+
```
|
|
18
|
+
|
|
11
19
|
## Sentry CLI Surface
|
|
12
20
|
|
|
13
21
|
The plugin installs the npm `sentry` package as a runtime dependency and injects the current user's OAuth token as `SENTRY_AUTH_TOKEN` for Sentry skill commands.
|
package/package.json
CHANGED