Skip to content

Commit

Permalink
fix: Now using graceful-fs, hopefully to prevent EMFILE error on Windows
Browse files Browse the repository at this point in the history
* fix: Now using graceful-fs, hopefully to prevent EMFILE error on Windows

* fix: Adding graceful-fs as a dependency rather than a devDependency
  • Loading branch information
mrnyby authored and keithamus committed Nov 3, 2016
1 parent ef452c7 commit 54988e5
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,5 +1,5 @@
'use strict';
var fs = require('fs');
var fs = require('graceful-fs');
var path = require('path');
var findModules = require('find-modules');
var async = require('async');
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
"dependencies": {
"async": "^1.5.1",
"find-modules": "~0.2.0",
"graceful-fs": "^4.1.9",
"mkdirp": "^0.5.1"
},
"devDependencies": {
Expand Down

0 comments on commit 54988e5

Please sign in to comment.