Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit 44366b3

Browse files
cheesestringerxzyfer
authored andcommitted
1 parent 088b80b commit 44366b3

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
*/
44

55
var path = require('path'),
6-
clonedeep = require('lodash.clonedeep'),
7-
assign = require('lodash.assign'),
6+
clonedeep = require('lodash/cloneDeep'),
7+
assign = require('lodash/assign'),
88
sass = require('./extensions');
99

1010
/**

lib/watcher.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
var grapher = require('sass-graph'),
2-
clonedeep = require('lodash.clonedeep'),
2+
clonedeep = require('lodash/cloneDeep'),
33
path = require('path'),
44
config = {},
55
watcher = {},

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,7 @@
6060
"get-stdin": "^4.0.1",
6161
"glob": "^7.0.3",
6262
"in-publish": "^2.0.0",
63-
"lodash.assign": "^4.2.0",
64-
"lodash.clonedeep": "^4.3.2",
65-
"lodash.mergewith": "^4.6.0",
63+
"lodash": "^4.17.11",
6664
"meow": "^3.7.0",
6765
"mkdirp": "^0.5.1",
6866
"nan": "^2.10.0",

test/spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ var assert = require('assert'),
77
? require('../lib-cov')
88
: require('../lib'),
99
readYaml = require('read-yaml'),
10-
mergeWith = require('lodash.mergewith'),
11-
assign = require('lodash.assign'),
10+
mergeWith = require('lodash/mergeWith'),
11+
assign = require('lodash/assign'),
1212
glob = require('glob'),
1313
specPath = require('sass-spec').dirname.replace(/\\/g, '/'),
1414
impl = 'libsass',

0 commit comments

Comments
 (0)