@sentry/junior-hex 0.62.0 → 0.64.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.
Files changed (2) hide show
  1. package/README.md +4 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -10,14 +10,12 @@ pnpm add @sentry/junior @sentry/junior-hex
10
10
 
11
11
  ## Configure
12
12
 
13
- List the plugin in `juniorNitro({ plugins: { packages: [...] } })`:
13
+ Add the package name to the plugin set exported from `plugins.ts`:
14
14
 
15
15
  ```ts
16
- juniorNitro({
17
- plugins: {
18
- packages: ["@sentry/junior-hex"],
19
- },
20
- });
16
+ import { defineJuniorPlugins } from "@sentry/junior";
17
+
18
+ export const plugins = defineJuniorPlugins(["@sentry/junior-hex"]);
21
19
  ```
22
20
 
23
21
  No API token is needed. Each user completes OAuth the first time Junior calls a Hex MCP tool on their behalf.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/junior-hex",
3
- "version": "0.62.0",
3
+ "version": "0.64.0",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"