@vitest-agent/plugin 4.0.4 → 4.1.1
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 +8 -8
- package/plugin.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitest-agent/plugin",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.1",
|
|
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": [
|
|
@@ -44,13 +44,13 @@
|
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@effect/platform-node": "4.0.0-rc.115",
|
|
47
|
-
"@effected/glob": "^0.6.
|
|
48
|
-
"@effected/workspaces": "^0.22.
|
|
49
|
-
"@vitest-agent/cli": "3.
|
|
50
|
-
"@vitest-agent/engine": "0.1
|
|
51
|
-
"@vitest-agent/mcp": "4.
|
|
52
|
-
"@vitest-agent/reporter": "3.0
|
|
53
|
-
"@vitest-agent/sdk": "5.0
|
|
47
|
+
"@effected/glob": "^0.6.1",
|
|
48
|
+
"@effected/workspaces": "^0.22.1",
|
|
49
|
+
"@vitest-agent/cli": "3.1.1",
|
|
50
|
+
"@vitest-agent/engine": "0.2.1",
|
|
51
|
+
"@vitest-agent/mcp": "4.1.1",
|
|
52
|
+
"@vitest-agent/reporter": "3.1.0",
|
|
53
|
+
"@vitest-agent/sdk": "5.1.0",
|
|
54
54
|
"effect": "4.0.0-rc.115",
|
|
55
55
|
"magic-string": "^1.4.1"
|
|
56
56
|
},
|
package/plugin.js
CHANGED
|
@@ -147,7 +147,7 @@ const reportedConfigDiagnosticsByVitest = /* @__PURE__ */ new WeakMap();
|
|
|
147
147
|
*
|
|
148
148
|
* @public
|
|
149
149
|
*/
|
|
150
|
-
const CURRENT_PLUGIN_VERSION = "4.
|
|
150
|
+
const CURRENT_PLUGIN_VERSION = "4.1.1";
|
|
151
151
|
const TEST_FILE_DIR_RE = new RegExp(`/(?:${SRC_DIR}|${TEST_DIR})/`);
|
|
152
152
|
const isTestFile = (id) => isTestFileName(id) && TEST_FILE_DIR_RE.test(id);
|
|
153
153
|
/**
|