Skip to content

Commit

Permalink
Merge pull request #7 from armano2/dep/lodash
Browse files Browse the repository at this point in the history
dep: reduce size of consumer node_modules
  • Loading branch information
kaelzhang authored Jan 9, 2021
2 parents 1690391 + e87e961 commit c8a236a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@
"dependencies": {
"glob": "^7.1.3",
"ignore": "^5.0.5",
"lodash.difference": "^4.5.0",
"lodash.union": "^4.6.0",
"lodash": "4.x",
"make-array": "^1.0.5",
"util.inherits": "^1.0.3"
}
Expand Down
4 changes: 2 additions & 2 deletions src/util.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const ignore = require('ignore')
const path = require('path')
const difference = require('lodash.difference')
const union = require('lodash.union')
const difference = require('lodash/difference')
const union = require('lodash/union')
const make_array = require('make-array')

const IGNORE = typeof Symbol === 'function'
Expand Down

0 comments on commit c8a236a

Please sign in to comment.