@vitest-agent/plugin 2.4.1 → 2.4.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vitest-agent/plugin",
3
- "version": "2.4.1",
3
+ "version": "2.4.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": [
@@ -41,11 +41,11 @@
41
41
  "dependencies": {
42
42
  "@effect/platform-node": "4.0.0-rc.109",
43
43
  "@effect/sql-sqlite-node": "4.0.0-rc.109",
44
- "@effected/workspaces": "^0.16.0",
45
- "@vitest-agent/cli": "2.2.3",
46
- "@vitest-agent/mcp": "2.3.3",
47
- "@vitest-agent/reporter": "2.1.3",
48
- "@vitest-agent/sdk": "2.4.3",
44
+ "@effected/workspaces": "^0.17.0",
45
+ "@vitest-agent/cli": "2.2.5",
46
+ "@vitest-agent/mcp": "2.4.0",
47
+ "@vitest-agent/reporter": "2.1.5",
48
+ "@vitest-agent/sdk": "2.4.5",
49
49
  "effect": "4.0.0-rc.109",
50
50
  "magic-string": "^1.2.2"
51
51
  },
package/plugin.js CHANGED
@@ -100,7 +100,7 @@ const aggregatedReporterByVitest = /* @__PURE__ */ new WeakSet();
100
100
  *
101
101
  * @public
102
102
  */
103
- const CURRENT_PLUGIN_VERSION = "2.4.1";
103
+ const CURRENT_PLUGIN_VERSION = "2.4.3";
104
104
  const TEST_FILE_DIR_RE = new RegExp(`/(?:${SRC_DIR}|${TEST_DIR})/`);
105
105
  const isTestFile = (id) => isTestFileName(id) && TEST_FILE_DIR_RE.test(id);
106
106
  /**
@@ -120,7 +120,7 @@ var DefaultDiscoverStrategy = class extends DiscoverStrategy {
120
120
  const exclude = [
121
121
  ...configDefaults.exclude,
122
122
  ...[SRC_DIR, TEST_DIR].flatMap((root) => [...NON_DISCOVERABLE_DIRS].map((d) => join(input.path, root, "**", d, "**"))),
123
- ...hasTestDirTests ? TEST_HELPER_DIRS.map((d) => join(input.path, TEST_DIR, "**", d, "**")) : []
123
+ ...hasTestDirTests ? TEST_HELPER_DIRS.map((d) => join(input.path, TEST_DIR, d, "**")) : []
124
124
  ];
125
125
  const setupFile = await detectSetupFile(input.path, fs);
126
126
  return {