@savvy-web/vitest 1.5.0 → 1.6.0

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/README.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # @savvy-web/vitest
2
2
 
3
+ > **This package is deprecated and no longer maintained.**
4
+ > Migrate to [`@vitest-agent/plugin`](https://www.npmjs.com/package/@vitest-agent/plugin) for similar functionality.
5
+ > Sources live in the [vitest-agent monorepo](https://github.com/spencerbeggs/vitest-agent).
6
+ > No further releases, fixes or security patches will be published here.
7
+
3
8
  [![npm version](https://img.shields.io/npm/v/@savvy-web/vitest)](https://www.npmjs.com/package/@savvy-web/vitest)
4
9
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
10
 
package/index.d.ts CHANGED
@@ -202,7 +202,7 @@ declare class VitestProject {
202
202
  */
203
203
  get kind(): VitestProjectKind;
204
204
  /**
205
- * Coverage exclusion patterns accumulated via {@link addCoverageExclude}.
205
+ * Coverage exclusion patterns accumulated via {@link VitestProject.addCoverageExclude}.
206
206
  *
207
207
  * @remarks
208
208
  * These patterns are not embedded in the inline project config but are
@@ -221,8 +221,8 @@ declare class VitestProject {
221
221
  *
222
222
  * @remarks
223
223
  * The clone has its own config object so mutations via
224
- * {@link override}, {@link addInclude}, {@link addExclude}, and
225
- * {@link addCoverageExclude} do not affect the original.
224
+ * {@link VitestProject.override}, {@link VitestProject.addInclude}, {@link VitestProject.addExclude}, and
225
+ * {@link VitestProject.addCoverageExclude} do not affect the original.
226
226
  *
227
227
  * @returns A new {@link VitestProject} with the same configuration
228
228
  */
@@ -257,7 +257,7 @@ declare class VitestProject {
257
257
  * Appends glob patterns to the coverage exclusion list.
258
258
  *
259
259
  * @remarks
260
- * These patterns are exposed via {@link coverageExcludes} for the
260
+ * These patterns are exposed via {@link VitestProject.coverageExcludes} for the
261
261
  * workspace-level coverage configuration to consume.
262
262
  *
263
263
  * @param patterns - Glob patterns to exclude from coverage
package/index.js CHANGED
@@ -96,7 +96,7 @@ var VitestProject = class VitestProject {
96
96
  return this.#kind;
97
97
  }
98
98
  /**
99
- * Coverage exclusion patterns accumulated via {@link addCoverageExclude}.
99
+ * Coverage exclusion patterns accumulated via {@link VitestProject.addCoverageExclude}.
100
100
  *
101
101
  * @remarks
102
102
  * These patterns are not embedded in the inline project config but are
@@ -119,8 +119,8 @@ var VitestProject = class VitestProject {
119
119
  *
120
120
  * @remarks
121
121
  * The clone has its own config object so mutations via
122
- * {@link override}, {@link addInclude}, {@link addExclude}, and
123
- * {@link addCoverageExclude} do not affect the original.
122
+ * {@link VitestProject.override}, {@link VitestProject.addInclude}, {@link VitestProject.addExclude}, and
123
+ * {@link VitestProject.addCoverageExclude} do not affect the original.
124
124
  *
125
125
  * @returns A new {@link VitestProject} with the same configuration
126
126
  */
@@ -202,7 +202,7 @@ var VitestProject = class VitestProject {
202
202
  * Appends glob patterns to the coverage exclusion list.
203
203
  *
204
204
  * @remarks
205
- * These patterns are exposed via {@link coverageExcludes} for the
205
+ * These patterns are exposed via {@link VitestProject.coverageExcludes} for the
206
206
  * workspace-level coverage configuration to consume.
207
207
  *
208
208
  * @param patterns - Glob patterns to exclude from coverage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savvy-web/vitest",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "private": false,
5
5
  "description": "Vitest utility functions for Silk Suite deployment system",
6
6
  "homepage": "https://github.com/savvy-web/vitest#readme",
@@ -23,14 +23,15 @@
23
23
  ".": {
24
24
  "types": "./index.d.ts",
25
25
  "import": "./index.js"
26
- }
26
+ },
27
+ "./package.json": "./package.json"
27
28
  },
28
29
  "dependencies": {
29
30
  "workspace-tools": "0.41.7"
30
31
  },
31
32
  "peerDependencies": {
32
- "@types/node": "^25.9.0",
33
- "@typescript/native-preview": "^7.0.0-dev.20260513.1",
33
+ "@types/node": "^26.0.0",
34
+ "@typescript/native-preview": "^7.0.0-dev.20260612.1",
34
35
  "@vitest/coverage-v8": "^4.1.0",
35
36
  "typescript": "^6.0.0",
36
37
  "vitest": "^4.1.0",
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.58.8"
8
+ "packageVersion": "7.58.9"
9
9
  }
10
10
  ]
11
11
  }