@vitest-agent/plugin 2.5.6 → 2.5.7
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/package.json +9 -9
- package/plugin.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitest-agent/plugin",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Vitest plugin for the vitest-agent ecosystem: owns persistence, classification, baselines, trends, and dispatches rendering to a configurable reporter.",
|
|
6
6
|
"keywords": [
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
"./package.json": "./package.json"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@effect/platform-node": "4.0.0-rc.
|
|
43
|
-
"@effect/sql-sqlite-node": "4.0.0-rc.
|
|
44
|
-
"@effected/workspaces": "^0.
|
|
45
|
-
"@vitest-agent/cli": "2.2.
|
|
46
|
-
"@vitest-agent/mcp": "2.4.
|
|
47
|
-
"@vitest-agent/reporter": "2.2.
|
|
48
|
-
"@vitest-agent/sdk": "2.5.
|
|
49
|
-
"effect": "4.0.0-rc.
|
|
42
|
+
"@effect/platform-node": "4.0.0-rc.112",
|
|
43
|
+
"@effect/sql-sqlite-node": "4.0.0-rc.112",
|
|
44
|
+
"@effected/workspaces": "^0.20.0",
|
|
45
|
+
"@vitest-agent/cli": "2.2.15",
|
|
46
|
+
"@vitest-agent/mcp": "2.4.15",
|
|
47
|
+
"@vitest-agent/reporter": "2.2.4",
|
|
48
|
+
"@vitest-agent/sdk": "2.5.1",
|
|
49
|
+
"effect": "4.0.0-rc.112",
|
|
50
50
|
"magic-string": "^1.2.3"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
package/plugin.js
CHANGED
|
@@ -114,7 +114,7 @@ const coverageDirDecidedByVitest = /* @__PURE__ */ new WeakSet();
|
|
|
114
114
|
*
|
|
115
115
|
* @public
|
|
116
116
|
*/
|
|
117
|
-
const CURRENT_PLUGIN_VERSION = "2.5.
|
|
117
|
+
const CURRENT_PLUGIN_VERSION = "2.5.7";
|
|
118
118
|
const TEST_FILE_DIR_RE = new RegExp(`/(?:${SRC_DIR}|${TEST_DIR})/`);
|
|
119
119
|
const isTestFile = (id) => isTestFileName(id) && TEST_FILE_DIR_RE.test(id);
|
|
120
120
|
/**
|