@travetto/registry
Advanced tools
Comparing version 0.0.24 to 0.0.25
@@ -18,3 +18,3 @@ { | ||
"scripts": {}, | ||
"version": "0.0.24" | ||
"version": "0.0.25" | ||
} |
@@ -1,2 +0,2 @@ | ||
import { deepMerge } from '@travetto/base'; | ||
import { deepAssign } from '@travetto/base'; | ||
@@ -79,3 +79,3 @@ import { Registry } from './registry'; | ||
const conf = this.getOrCreatePending(cls); | ||
deepMerge(conf, pconfig); | ||
deepAssign(conf, pconfig); | ||
} | ||
@@ -85,3 +85,3 @@ | ||
const conf = this.getOrCreatePendingMethod(cls, method); | ||
deepMerge(conf, pconfig); | ||
deepAssign(conf, pconfig); | ||
} | ||
@@ -88,0 +88,0 @@ |
17039