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.
2 parents 800aea6 + a78cab6 commit fd30c7eCopy full SHA for fd30c7e
src/settings.ts
@@ -3,6 +3,10 @@ import * as os from 'os';
3
4
import { FileSystemAdapter, Pattern } from './types';
5
6
+/**
7
+ * The `os.cpus` method can return zero. We expect the number of cores to be greater than zero.
8
+ * https://github.com/nodejs/node/blob/7faeddf23a98c53896f8b574a6e66589e8fb1eb8/lib/os.js#L106-L107
9
+ */
10
const CPU_COUNT = Math.max(os.cpus().length, 1);
11
12
export const DEFAULT_FILE_SYSTEM_ADAPTER: FileSystemAdapter = {
0 commit comments