@ait-co/devtools 0.1.111 → 0.1.112
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/dist/mcp/cli.js +6 -6
- package/dist/mcp/cli.js.map +1 -1
- package/dist/mcp/server.js +2 -2
- package/dist/mcp/server.js.map +1 -1
- package/dist/panel/index.js +1 -1
- package/dist/{pool-Bf6rQci4.d.ts → pool-mZlgCmNQ.d.ts} +2 -2
- package/dist/{pool-Bf6rQci4.d.ts.map → pool-mZlgCmNQ.d.ts.map} +1 -1
- package/dist/{relay-worker-xxanNQGs.d.ts → relay-worker-Dppp2yZj.d.ts} +2 -2
- package/dist/{relay-worker-xxanNQGs.d.ts.map → relay-worker-Dppp2yZj.d.ts.map} +1 -1
- package/dist/{runtime-Wi5d6Ywz.d.ts → runtime-C7uxh3Mf.d.ts} +14 -2
- package/dist/runtime-C7uxh3Mf.d.ts.map +1 -0
- package/dist/test-runner/cli.js +2 -2
- package/dist/test-runner/cli.js.map +1 -1
- package/dist/test-runner/config.d.ts +2 -2
- package/dist/test-runner/config.js +1 -1
- package/dist/test-runner/config.js.map +1 -1
- package/dist/test-runner/pool.d.ts +1 -1
- package/dist/test-runner/relay-worker.d.ts +1 -1
- package/dist/test-runner/rpc.d.ts +1 -1
- package/dist/test-runner/runtime.d.ts +2 -0
- package/dist/test-runner/runtime.js +162 -0
- package/dist/test-runner/runtime.js.map +1 -0
- package/dist/test-runner/task-graph.d.ts +1 -1
- package/package.json +2 -1
- package/dist/runtime-Wi5d6Ywz.d.ts.map +0 -1
package/dist/mcp/cli.js
CHANGED
|
@@ -233,7 +233,7 @@ function startMaxAgeWatchdog(onExpired, opts = {}) {
|
|
|
233
233
|
* resolved against `cwd`. `bundleTestFile` requires an absolute path, so the
|
|
234
234
|
* absolute output feeds it directly.
|
|
235
235
|
*
|
|
236
|
-
* @param patterns Glob patterns or file paths (e.g. `['src/**\/*.
|
|
236
|
+
* @param patterns Glob patterns or file paths (e.g. `['src/**\/*.ait.test.ts']`).
|
|
237
237
|
* @param cwd Base directory for relative patterns/results.
|
|
238
238
|
* @returns Sorted, de-duplicated absolute file paths. Empty when nothing matches.
|
|
239
239
|
*/
|
|
@@ -652,7 +652,7 @@ DESCRIPTION
|
|
|
652
652
|
yet (it currently resolves the matched files and defers to that tool).
|
|
653
653
|
|
|
654
654
|
EXAMPLE
|
|
655
|
-
devtools-test 'src/**/*.
|
|
655
|
+
devtools-test 'src/**/*.ait.test.ts' --timeout 60000
|
|
656
656
|
|
|
657
657
|
`.trimStart();
|
|
658
658
|
/**
|
|
@@ -4581,7 +4581,7 @@ const DEBUG_TOOL_DEFINITIONS = [
|
|
|
4581
4581
|
files: {
|
|
4582
4582
|
type: "array",
|
|
4583
4583
|
items: { type: "string" },
|
|
4584
|
-
description: "Glob patterns or file paths to run (e.g. [\"src/**/*.
|
|
4584
|
+
description: "Glob patterns or file paths to run (e.g. [\"src/**/*.ait.test.ts\"]). Resolved relative to projectRoot when given, else the daemon cwd. Required, non-empty."
|
|
4585
4585
|
},
|
|
4586
4586
|
projectRoot: {
|
|
4587
4587
|
type: "string",
|
|
@@ -5375,7 +5375,7 @@ async function readMcpSdkVersion() {
|
|
|
5375
5375
|
* some test environments that skip the build step).
|
|
5376
5376
|
*/
|
|
5377
5377
|
function readDevtoolsVersion() {
|
|
5378
|
-
return "0.1.
|
|
5378
|
+
return "0.1.112";
|
|
5379
5379
|
}
|
|
5380
5380
|
/**
|
|
5381
5381
|
* Derives the next recommended action from a completed diagnostics snapshot.
|
|
@@ -6295,7 +6295,7 @@ function createDebugServer(deps) {
|
|
|
6295
6295
|
}
|
|
6296
6296
|
const server = new Server({
|
|
6297
6297
|
name: "ait-debug",
|
|
6298
|
-
version: "0.1.
|
|
6298
|
+
version: "0.1.112"
|
|
6299
6299
|
}, { capabilities: { tools: { listChanged: true } } });
|
|
6300
6300
|
server.setRequestHandler(ListToolsRequestSchema, () => {
|
|
6301
6301
|
const conn = router.active;
|
|
@@ -8195,7 +8195,7 @@ function createDevServer(deps = {}) {
|
|
|
8195
8195
|
const aitSource = deps.aitSource ?? new HttpAitSource({ stateEndpoint });
|
|
8196
8196
|
const server = new Server({
|
|
8197
8197
|
name: "ait-devtools",
|
|
8198
|
-
version: "0.1.
|
|
8198
|
+
version: "0.1.112"
|
|
8199
8199
|
}, { capabilities: { tools: {} } });
|
|
8200
8200
|
server.setRequestHandler(ListToolsRequestSchema, () => ({ tools: DEV_TOOL_DEFINITIONS.map((tool) => ({ ...tool })) }));
|
|
8201
8201
|
server.setRequestHandler(CallToolRequestSchema, async (request) => {
|