Replace deepmerge with lodash.merge

This commit is contained in:
Jakub Juszczak
2017-09-12 10:53:31 +02:00
parent 41736c840d
commit e4977a6be7
4 changed files with 8 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
import merge from 'deepmerge'
import merge from 'lodash.merge'
export function mergeOptions (obj, src) {
return merge(obj, src)