Skip to content

Commit

Permalink
Replace destructing import with one-by-one import (#417)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayyan Lewis authored and sindresorhus committed Jan 25, 2020
1 parent 5cddaec commit e8c43d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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');
const isEqual = require('lodash/isEqual');
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');
const mergeWith = require('lodash/mergeWith');
const multimatch = require('multimatch');
const pathExists = require('path-exists');
const pkgConf = require('pkg-conf');
Expand Down

0 comments on commit e8c43d2

Please sign in to comment.