vitest-config-silverwind 9.0.1 → 9.0.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 CHANGED
@@ -22,6 +22,7 @@ function dedupePlugins(plugins) {
22
22
  }
23
23
  return ret;
24
24
  }
25
+ const setupFile = "vitest.setup.js";
25
26
  const base = ({ url, test: { setupFiles = [], ...otherTest } = {}, plugins = [], ...other } = {}) => ({
26
27
  test: {
27
28
  include: [
@@ -32,7 +33,7 @@ const base = ({ url, test: { setupFiles = [], ...otherTest } = {}, plugins = [],
32
33
  "**/.{air,git,github,gitea,swc,ruff_cache,venv,vscode}/**"
33
34
  ],
34
35
  setupFiles: uniq([
35
- fileURLToPath(new URL("data:video/mp2t;base64,aW1wb3J0IHtleHBlY3R9IGZyb20gInZpdGVzdCI7CmltcG9ydCBtYXRjaGVycyBmcm9tICJqZXN0LWV4dGVuZGVkIjsKCmV4cGVjdC5leHRlbmQobWF0Y2hlcnMpOwo=", import.meta.url)),
36
+ fileURLToPath(new URL(setupFile, import.meta.url)),
36
37
  ...setupFiles
37
38
  ]),
38
39
  testTimeout: 3e4,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vitest-config-silverwind",
3
- "version": "9.0.1",
3
+ "version": "9.0.2",
4
4
  "description": "Shared vitest configuration",
5
5
  "author": "silverwind <me@silverwind.io>",
6
6
  "repository": "silverwind/vitest-config-silverwind",
@@ -1 +0,0 @@
1
- export {};