Skip to content

Commit

Permalink
Update lodash and remove prototype vulnerabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
cheesestringer authored and xzyfer committed Jan 22, 2019
1 parent 088b80b commit 44366b3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions lib/index.js
Expand Up @@ -3,8 +3,8 @@
*/

var path = require('path'),
clonedeep = require('lodash.clonedeep'),
assign = require('lodash.assign'),
clonedeep = require('lodash/cloneDeep'),
assign = require('lodash/assign'),
sass = require('./extensions');

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/watcher.js
@@ -1,5 +1,5 @@
var grapher = require('sass-graph'),
clonedeep = require('lodash.clonedeep'),
clonedeep = require('lodash/cloneDeep'),
path = require('path'),
config = {},
watcher = {},
Expand Down
4 changes: 1 addition & 3 deletions package.json
Expand Up @@ -60,9 +60,7 @@
"get-stdin": "^4.0.1",
"glob": "^7.0.3",
"in-publish": "^2.0.0",
"lodash.assign": "^4.2.0",
"lodash.clonedeep": "^4.3.2",
"lodash.mergewith": "^4.6.0",
"lodash": "^4.17.11",
"meow": "^3.7.0",
"mkdirp": "^0.5.1",
"nan": "^2.10.0",
Expand Down
4 changes: 2 additions & 2 deletions test/spec.js
Expand Up @@ -7,8 +7,8 @@ var assert = require('assert'),
? require('../lib-cov')
: require('../lib'),
readYaml = require('read-yaml'),
mergeWith = require('lodash.mergewith'),
assign = require('lodash.assign'),
mergeWith = require('lodash/mergeWith'),
assign = require('lodash/assign'),
glob = require('glob'),
specPath = require('sass-spec').dirname.replace(/\\/g, '/'),
impl = 'libsass',
Expand Down

0 comments on commit 44366b3

Please sign in to comment.