Skip to content

Commit

Permalink
Migrate to the lodash package
Browse files Browse the repository at this point in the history
The modularized lodash packages are unmaintained since 2 years, lagging a lot
behind the main lodash package. Partial imports of lodash are the preferred
way.
  • Loading branch information
stof authored and xzyfer committed Aug 5, 2019
1 parent fa670c6 commit 7ab018e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -3,7 +3,7 @@ const PluginError = require('plugin-error');
const replaceExtension = require('replace-ext');
const stripAnsi = require('strip-ansi');
const through = require('through2');
const clonedeep = require('lodash.clonedeep');
const clonedeep = require('lodash/cloneDeep');
const path = require('path');
const applySourceMap = require('vinyl-sourcemaps-apply');

Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -25,7 +25,7 @@
},
"dependencies": {
"chalk": "^2.3.0",
"lodash.clonedeep": "^4.3.2",
"lodash": "^4.17.11",
"node-sass": "^4.8.3",
"plugin-error": "^1.0.1",
"replace-ext": "^1.0.0",
Expand Down

1 comment on commit 7ab018e

@artem-malko
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey, what about new release version?)

Please sign in to comment.