vitest-config-silverwind 11.1.2 → 11.1.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/dist/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -43,13 +43,14 @@ function dedupePlugins(libPlugins, userPlugins) {
43
43
  const setupFileJs = "vitest.setup.js";
44
44
  const setupFileTs = "vitest.setup.ts";
45
45
  /** Directories to exclude from both test discovery and coverage */
46
- const dirExclude = ["**/{node_modules,dist,build,e2e,snapshots,fixtures,persistent}/**", "**/.{air,git,github,gitea,make,swc,ruff_cache,venv,vscode}/**"];
46
+ const dirExclude = ["**/{node_modules,dist,build,e2e,snapshots,fixtures,persistent}/**", "**/.{air,git,github,gitea,make,playwright-mcp,swc,ruff_cache,venv,vscode}/**"];
47
47
  /** Files to exclude from coverage, always applied even when user adds custom excludes */
48
48
  const coverageExclude = [
49
49
  "**/*.config.*",
50
50
  "**/*.test.*",
51
51
  "**/*.stories.*",
52
52
  "**/*.d.ts",
53
+ "**/bench.*",
53
54
  "**/package.json",
54
55
  ...dirExclude
55
56
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vitest-config-silverwind",
3
- "version": "11.1.2",
3
+ "version": "11.1.4",
4
4
  "description": "Shared vitest configuration",
5
5
  "author": "silverwind <me@silverwind.io>",
6
6
  "repository": "silverwind/vitest-config-silverwind",