vitest-config-silverwind 11.1.0 → 11.1.2
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/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -46,9 +46,11 @@ const setupFileTs = "vitest.setup.ts";
|
|
|
46
46
|
const dirExclude = ["**/{node_modules,dist,build,e2e,snapshots,fixtures,persistent}/**", "**/.{air,git,github,gitea,make,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
|
+
"**/*.config.*",
|
|
49
50
|
"**/*.test.*",
|
|
50
51
|
"**/*.stories.*",
|
|
51
52
|
"**/*.d.ts",
|
|
53
|
+
"**/package.json",
|
|
52
54
|
...dirExclude
|
|
53
55
|
];
|
|
54
56
|
function base({ url, test: { setupFiles = [], coverage: userCoverage, ...otherTest } = {}, plugins = [], ...other }) {
|