@vitest-agent/plugin 4.0.0 → 4.0.2
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 +7 -7
- package/plugin.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitest-agent/plugin",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.2",
|
|
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": [
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@effect/platform-node": "4.0.0-rc.115",
|
|
47
47
|
"@effect/sql-sqlite-node": "4.0.0-rc.115",
|
|
48
|
-
"@effected/workspaces": "^0.
|
|
49
|
-
"@vitest-agent/cli": "3.0.
|
|
50
|
-
"@vitest-agent/engine": "0.1.
|
|
51
|
-
"@vitest-agent/mcp": "4.0.
|
|
52
|
-
"@vitest-agent/reporter": "3.0.
|
|
53
|
-
"@vitest-agent/sdk": "
|
|
48
|
+
"@effected/workspaces": "^0.22.0",
|
|
49
|
+
"@vitest-agent/cli": "3.0.2",
|
|
50
|
+
"@vitest-agent/engine": "0.1.2",
|
|
51
|
+
"@vitest-agent/mcp": "4.0.2",
|
|
52
|
+
"@vitest-agent/reporter": "3.0.5",
|
|
53
|
+
"@vitest-agent/sdk": "5.0.0",
|
|
54
54
|
"effect": "4.0.0-rc.115",
|
|
55
55
|
"magic-string": "^1.3.1"
|
|
56
56
|
},
|
package/plugin.js
CHANGED
|
@@ -127,7 +127,7 @@ const coverageDirDecidedByVitest = /* @__PURE__ */ new WeakSet();
|
|
|
127
127
|
*
|
|
128
128
|
* @public
|
|
129
129
|
*/
|
|
130
|
-
const CURRENT_PLUGIN_VERSION = "4.0.
|
|
130
|
+
const CURRENT_PLUGIN_VERSION = "4.0.2";
|
|
131
131
|
const TEST_FILE_DIR_RE = new RegExp(`/(?:${SRC_DIR}|${TEST_DIR})/`);
|
|
132
132
|
const isTestFile = (id) => isTestFileName(id) && TEST_FILE_DIR_RE.test(id);
|
|
133
133
|
/**
|