@octanejs/mcp-server 0.2.20 → 0.2.22
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 -2
- package/package.json +1 -1
- package/src/index.js +12 -0
package/README.md
CHANGED
|
@@ -163,9 +163,10 @@ one manifest suite by name (`js-framework`, `todomvc`, `weather-app`,
|
|
|
163
163
|
`controlled-form`, `external-store-fanout`, `external-store-integrations`,
|
|
164
164
|
`scheduler-responsiveness`, `suspense-recovery`, `event-delegation`,
|
|
165
165
|
`application-composition`, `scaling-curves`, `dev-form-diagnostics`,
|
|
166
|
-
`behavior-root-events`, `activity`, `streaming-ssr`, `streaming-backpressure`,
|
|
166
|
+
`behavior-root-events`, `router-dispatch`, `floating-tree-navigation`, `manifest-cache-invalidation`, `vite-client-assets`, `activity`, `streaming-ssr`, `streaming-backpressure`,
|
|
167
167
|
`compiler-throughput`, `tsrx-component-graph`, `codegen-size`, `hook-memo`,
|
|
168
|
-
`bundle-size`, `bundle-reachability`, `three-renderer`,
|
|
168
|
+
`template-call-memo`, `bundle-size`, `bundle-reachability`, `three-renderer`,
|
|
169
|
+
`three-bundle-size`, …)
|
|
169
170
|
or every suite with `all`; `quick` selects the reduced-iteration smoke pass. The
|
|
170
171
|
suite list mirrors the runner manifest and `node benchmarks/bench.mjs --list`.
|
|
171
172
|
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -50,9 +50,12 @@ export const BENCHMARK_SUITES = [
|
|
|
50
50
|
'chat-stream',
|
|
51
51
|
'streamdown-hosted',
|
|
52
52
|
'svg-dashboard',
|
|
53
|
+
'uibench',
|
|
53
54
|
'dbmon',
|
|
54
55
|
'recursive-context',
|
|
55
56
|
'spa-navigation',
|
|
57
|
+
'scoped-signals',
|
|
58
|
+
'scoped-native-reads',
|
|
56
59
|
'signal-favoring',
|
|
57
60
|
'news',
|
|
58
61
|
'hydration-interactivity',
|
|
@@ -67,7 +70,12 @@ export const BENCHMARK_SUITES = [
|
|
|
67
70
|
'application-composition',
|
|
68
71
|
'scaling-curves',
|
|
69
72
|
'dev-form-diagnostics',
|
|
73
|
+
'scheduler-depth',
|
|
70
74
|
'behavior-root-events',
|
|
75
|
+
'router-dispatch',
|
|
76
|
+
'floating-tree-navigation',
|
|
77
|
+
'manifest-cache-invalidation',
|
|
78
|
+
'vite-client-assets',
|
|
71
79
|
'store-selector-fanout',
|
|
72
80
|
'hook-store-composition',
|
|
73
81
|
'activity',
|
|
@@ -95,9 +103,13 @@ export const BENCHMARK_SUITES = [
|
|
|
95
103
|
'lynx-bundle-size',
|
|
96
104
|
'codegen-size',
|
|
97
105
|
'hook-memo',
|
|
106
|
+
'template-call-memo',
|
|
98
107
|
'compiler-throughput',
|
|
99
108
|
'tsrx-component-graph',
|
|
109
|
+
'tsrx-jsx-return-branches',
|
|
110
|
+
'text-type-roots',
|
|
100
111
|
'tsrx-nesting-diagnostics',
|
|
112
|
+
'tsrx-native-change-analysis',
|
|
101
113
|
'bundle-size',
|
|
102
114
|
'bundle-reachability',
|
|
103
115
|
'three-renderer',
|