Merge pull request #187 from starpit/lodash.merge
fix: trim lodash dependence down to lodash.merge
This commit is contained in:
commit
65f24c5674
2 changed files with 2 additions and 2 deletions
|
|
@ -56,7 +56,7 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"diff": "^3.5.0",
|
"diff": "^3.5.0",
|
||||||
"hogan.js": "^3.0.2",
|
"hogan.js": "^3.0.2",
|
||||||
"lodash": "^4.17.11",
|
"lodash.merge": "^4.6.1",
|
||||||
"whatwg-fetch": "^3.0.0"
|
"whatwg-fetch": "^3.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
(function() {
|
(function() {
|
||||||
var merge = require('lodash/merge');
|
var merge = require('lodash.merge');
|
||||||
|
|
||||||
function Utils() {
|
function Utils() {
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue