@vitest-agent/plugin 4.1.2 → 4.1.3

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 +5 -5
  2. package/plugin.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vitest-agent/plugin",
3
- "version": "4.1.2",
3
+ "version": "4.1.3",
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,10 +45,10 @@
45
45
  "dependencies": {
46
46
  "@effect/platform-node": "4.0.0-rc.116",
47
47
  "@effected/glob": "^0.7.0",
48
- "@effected/workspaces": "^0.23.0",
49
- "@vitest-agent/cli": "3.1.2",
50
- "@vitest-agent/engine": "0.2.2",
51
- "@vitest-agent/mcp": "4.2.0",
48
+ "@effected/workspaces": "^0.24.0",
49
+ "@vitest-agent/cli": "3.1.3",
50
+ "@vitest-agent/engine": "0.2.3",
51
+ "@vitest-agent/mcp": "4.2.1",
52
52
  "@vitest-agent/reporter": "3.1.1",
53
53
  "@vitest-agent/sdk": "5.1.1",
54
54
  "effect": "4.0.0-rc.116",
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.1.2";
150
+ const CURRENT_PLUGIN_VERSION = "4.1.3";
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
  /**