Skip to content

Commit

Permalink
enforce graceful cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
r4zendev committed Oct 4, 2024
1 parent 19b7762 commit ceb0d93
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ const fs = require('graceful-fs');
const path = require('path');
const http = require('http');
const https = require('https');
const tmp = require('tmp');
const ignores = require('./ignoreFiles');

const tmp = require('tmp');
tmp.setGracefulCleanup();

const availableCpus = Math.max(require('os').cpus().length - 1, 1);
const CHUNK_SIZE = 50;

Expand Down

0 comments on commit ceb0d93

Please sign in to comment.