@octanejs/mcp-server 0.2.12 → 0.2.13

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 CHANGED
@@ -164,9 +164,9 @@ one manifest suite by name (`js-framework`, `todomvc`, `weather-app`,
164
164
  `scheduler-responsiveness`, `suspense-recovery`, `event-delegation`,
165
165
  `application-composition`, `scaling-curves`, `streaming-ssr`,
166
166
  `streaming-backpressure`, `compiler-throughput`, `codegen-size`,
167
- `bundle-size`, `three-renderer`, `three-bundle-size`, …) or every suite with
168
- `all`; `quick` selects the reduced-iteration smoke pass. The suite list mirrors
169
- the runner manifest and `node benchmarks/bench.mjs --list`.
167
+ `bundle-size`, `bundle-reachability`, `three-renderer`, `three-bundle-size`, …)
168
+ or every suite with `all`; `quick` selects the reduced-iteration smoke pass. The
169
+ suite list mirrors the runner manifest and `node benchmarks/bench.mjs --list`.
170
170
 
171
171
  ### `octane_issue_context`
172
172
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@octanejs/mcp-server",
3
- "version": "0.2.12",
3
+ "version": "0.2.13",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=22.22.2"
package/src/bridge.js CHANGED
@@ -58,6 +58,11 @@ export const KNOWN_BINDINGS = {
58
58
  '@streamdown/cjk': '@octanejs/streamdown',
59
59
  shadcn: '@octanejs/shadcn',
60
60
  recharts: '@octanejs/recharts',
61
+ // react-map-gl@8 is a re-export shell; the binding covers the package its
62
+ // ./mapbox subpath resolves to, so both specifiers map here.
63
+ 'react-map-gl': '@octanejs/react-map-gl',
64
+ 'react-map-gl/mapbox': '@octanejs/react-map-gl',
65
+ '@vis.gl/react-mapbox': '@octanejs/react-map-gl',
61
66
  '@react-three/fiber': '@octanejs/three',
62
67
  '@visx/visx': '@octanejs/visx',
63
68
  '@visx/a11y': '@octanejs/visx',
package/src/index.js CHANGED
@@ -85,6 +85,7 @@ export const BENCHMARK_SUITES = [
85
85
  'codegen-size',
86
86
  'compiler-throughput',
87
87
  'bundle-size',
88
+ 'bundle-reachability',
88
89
  'three-renderer',
89
90
  'three-bundle-size',
90
91
  ];