Skip to content

Commit

Permalink
Replace singular Lodash packages with the main one (#413)
Browse files Browse the repository at this point in the history
  • Loading branch information
Richienb authored and sindresorhus committed Dec 16, 2019
1 parent 1fdc2f9 commit 5cddaec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const path = require('path');
const eslint = require('eslint');
const globby = require('globby');
const isEqual = require('lodash.isequal');
const {isEqual} = require('lodash');
const multimatch = require('multimatch');
const arrify = require('arrify');
const optionsManager = require('./lib/options-manager');
Expand Down
2 changes: 1 addition & 1 deletion lib/options-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const os = require('os');
const path = require('path');
const arrify = require('arrify');
const mergeWith = require('lodash.mergewith');
const {mergeWith} = require('lodash');
const multimatch = require('multimatch');
const pathExists = require('path-exists');
const pkgConf = require('pkg-conf');
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,7 @@
"get-stdin": "^7.0.0",
"globby": "^9.0.0",
"has-flag": "^4.0.0",
"lodash.isequal": "^4.5.0",
"lodash.mergewith": "^4.6.2",
"lodash": "^4.17.15",
"meow": "^5.0.0",
"multimatch": "^4.0.0",
"open-editor": "^2.0.1",
Expand Down

0 comments on commit 5cddaec

Please sign in to comment.