Comparing version 1.0.0-alpha-06 to 1.0.0-alpha-07
@@ -117,3 +117,3 @@ 'use strict'; | ||
Object.keys(config.aliases).forEach(key => aliases.set(key, config.aliases[key])); | ||
aliases.forEach((key, value) => di.setAlias(key, value)); | ||
aliases.forEach((value, key) => di.setAlias(key, value)); | ||
} | ||
@@ -120,0 +120,0 @@ |
@@ -161,3 +161,3 @@ 'use strict'; | ||
getParams() { | ||
return new Map(Object.assign({}, this.parsedUrl.query, this.params)); | ||
return new Map([this.parsedUrl.query, this.params]); | ||
} | ||
@@ -164,0 +164,0 @@ |
@@ -5,3 +5,3 @@ { | ||
"description": "Lightweight application framework with dyependency injection and dynamic type checking for node js", | ||
"version": "1.0.0-alpha-06", | ||
"version": "1.0.0-alpha-07", | ||
"dependencies": { | ||
@@ -8,0 +8,0 @@ "di-node": "0.2.x", |
Sorry, the diff of this file is not supported yet
89407