@nx/vitest 22.2.0-beta.3 → 22.2.0-beta.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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nx/vitest",
3
3
  "description": "The Nx Plugin for Vitest to enable fast unit testing with Vitest.",
4
- "version": "22.2.0-beta.3",
4
+ "version": "22.2.0-beta.4",
5
5
  "type": "commonjs",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -52,8 +52,8 @@
52
52
  "executors": "./executors.json",
53
53
  "generators": "./generators.json",
54
54
  "dependencies": {
55
- "@nx/devkit": "22.2.0-beta.3",
56
- "@nx/js": "22.2.0-beta.3",
55
+ "@nx/devkit": "22.2.0-beta.4",
56
+ "@nx/js": "22.2.0-beta.4",
57
57
  "tslib": "^2.3.0",
58
58
  "semver": "^7.6.3",
59
59
  "@phenomnomnominal/tsquery": "~5.0.1"
@@ -71,7 +71,7 @@
71
71
  }
72
72
  },
73
73
  "devDependencies": {
74
- "nx": "22.2.0-beta.3"
74
+ "nx": "22.2.0-beta.4"
75
75
  },
76
76
  "types": "./src/index.d.ts"
77
77
  }
@@ -9,8 +9,8 @@ async function createAiInstructionsForVitest(tree) {
9
9
  return;
10
10
  }
11
11
  const contents = (0, fs_1.readFileSync)(pathToAiInstructions);
12
- tree.write('ai-migrations/MIGRATE_VITEST_4.md', contents);
12
+ tree.write('tools/ai-migrations/MIGRATE_VITEST_4.md', contents);
13
13
  return [
14
- `We created 'ai-migrations/MIGRATE_VITEST_4.md' with instructions for an AI Agent to help migrate your Vitest projects to Vitest 4.`,
14
+ `We created 'tools/ai-migrations/MIGRATE_VITEST_4.md' with instructions for an AI Agent to help migrate your Vitest projects to Vitest 4.`,
15
15
  ];
16
16
  }