@vitest-agent/plugin 3.0.3 → 3.0.4

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/plugin.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vitest-agent/plugin",
3
- "version": "3.0.3",
3
+ "version": "3.0.4",
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": [
@@ -43,11 +43,11 @@
43
43
  "@effect/sql-sqlite-node": "4.0.0-rc.115",
44
44
  "@effected/workspaces": "^0.21.0",
45
45
  "@vitest-agent/cli": "2.2.19",
46
- "@vitest-agent/mcp": "3.0.3",
46
+ "@vitest-agent/mcp": "3.0.4",
47
47
  "@vitest-agent/reporter": "3.0.3",
48
48
  "@vitest-agent/sdk": "3.1.2",
49
49
  "effect": "4.0.0-rc.115",
50
- "magic-string": "^1.2.3"
50
+ "magic-string": "^1.3.1"
51
51
  },
52
52
  "peerDependencies": {
53
53
  "@vitest/coverage-istanbul": "^5.0.0",
package/plugin.js CHANGED
@@ -126,7 +126,7 @@ const coverageDirDecidedByVitest = /* @__PURE__ */ new WeakSet();
126
126
  *
127
127
  * @public
128
128
  */
129
- const CURRENT_PLUGIN_VERSION = "3.0.3";
129
+ const CURRENT_PLUGIN_VERSION = "3.0.4";
130
130
  const TEST_FILE_DIR_RE = new RegExp(`/(?:${SRC_DIR}|${TEST_DIR})/`);
131
131
  const isTestFile = (id) => isTestFileName(id) && TEST_FILE_DIR_RE.test(id);
132
132
  /**