Skip to content

Commit

Permalink
Update: Switch to monolithic lodash to avoid deep path issues (closes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
yocontra authored and phated committed Sep 27, 2016
1 parent 4cbaf8c commit cb55f6f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
var path = require('path');

var cloneStats = require('clone-stats');
var cloneDeep = require('lodash.clonedeep');
var _ = require('lodash');
var cloneDeep = require('lodash').cloneDeep;

var isBuffer = require('./lib/isBuffer');
var isStream = require('./lib/isStream');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"main": "./index.js",
"dependencies": {
"clone-stats": "~0.0.1",
"lodash.clonedeep": "^2.4.1"
"lodash": "^2.4.1"
},
"devDependencies": {
"mocha": "~1.17.0",
Expand Down

0 comments on commit cb55f6f

Please sign in to comment.