Skip to content

Commit 0eec6d4

Browse files
committed
disable forkWorker by default
1 parent 666513a commit 0eec6d4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/repository/options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module.exports = {
2727
encoding: 'utf8',
2828
// should spawn a worker process to avoir blocking
2929
// the main loop (may be slower with small projects or single cpu)
30-
forkWorker: require('os').cpus().length > 1,
30+
forkWorker: false, // require('os').cpus().length > 1,
3131
// use the file mtime property to check changes
3232
cacheByFileDate: true,
3333
// use the file size to detect changes

0 commit comments

Comments
 (0)