Skip to content

Commit

Permalink
Use graceful-fs to prevent EMFILE issues (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
doesdev authored and sindresorhus committed Apr 24, 2017
1 parent 90d0a84 commit af0bfcc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';
const fs = require('fs');
const path = require('path');
const fs = require('graceful-fs');
const decompressTar = require('decompress-tar');
const decompressTarbz2 = require('decompress-tarbz2');
const decompressTargz = require('decompress-targz');
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"decompress-tarbz2": "^4.0.0",
"decompress-targz": "^4.0.0",
"decompress-unzip": "^4.0.1",
"graceful-fs": "^4.1.10",
"mkdirp": "^0.5.1",
"pify": "^2.3.0",
"strip-dirs": "^2.0.0"
Expand Down

0 comments on commit af0bfcc

Please sign in to comment.