We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 445367b commit bb18559Copy full SHA for bb18559
packages/vitest/src/node/workspace/resolveWorkspace.ts
@@ -215,7 +215,13 @@ async function resolveWorkspaceProjectConfigs(
215
onlyFiles: false,
216
cwd: vitest.config.root,
217
expandDirectories: false,
218
- ignore: ['**/node_modules/**', '**/*.timestamp-*'],
+ ignore: [
219
+ '**/node_modules/**',
220
+ // temporary vite config file
221
+ '**/*.timestamp-*',
222
+ // macOS directory metadata
223
+ '**/.DS_Store',
224
+ ],
225
}
226
227
const workspacesFs = await glob(workspaceGlobMatches, globOptions)
0 commit comments