Merge pull request #187 from starpit/lodash.merge

fix: trim lodash dependence down to lodash.merge
This commit is contained in:
Rodrigo Fernandes 2019-01-04 23:30:03 +00:00 committed by GitHub
commit 65f24c5674
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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": {

View file

@ -6,7 +6,7 @@
*/ */
(function() { (function() {
var merge = require('lodash/merge'); var merge = require('lodash.merge');
function Utils() { function Utils() {
} }