@octanejs/mcp-server 0.2.11 → 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 +3 -3
- package/package.json +1 -1
- package/src/bridge.js +5 -0
- package/src/index.js +2 -0
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`, …)
|
|
168
|
-
`all`; `quick` selects the reduced-iteration smoke pass. The
|
|
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
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
|
@@ -79,11 +79,13 @@ export const BENCHMARK_SUITES = [
|
|
|
79
79
|
'async-waterfall',
|
|
80
80
|
'async-composition',
|
|
81
81
|
'lynx-list',
|
|
82
|
+
'universal-leaf-update',
|
|
82
83
|
'lynx-render',
|
|
83
84
|
'lynx-bundle-size',
|
|
84
85
|
'codegen-size',
|
|
85
86
|
'compiler-throughput',
|
|
86
87
|
'bundle-size',
|
|
88
|
+
'bundle-reachability',
|
|
87
89
|
'three-renderer',
|
|
88
90
|
'three-bundle-size',
|
|
89
91
|
];
|