easy-configuration
Advanced tools
Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "easy-configuration", | ||
"description": "Simply extensible loader for json config files", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"author": { | ||
@@ -6,0 +6,0 @@ "name": "David Kudera", |
# Easy Configuration | ||
Simply extensible loader for json config files. | ||
Simply extensible loader for json config files. This package is inspired by configuration in PHP framework [Nette](http://nette.org/en/). | ||
@@ -71,3 +71,3 @@ ## Installing | ||
"packages": { | ||
"application": "%basePath%/application.js" | ||
"application": "%basePath%/application.js", | ||
"translator": { | ||
@@ -115,6 +115,6 @@ "translations": "%shared.translations%", | ||
section.loadConfiguration = function() { | ||
return this.getConfig(defaults) | ||
return this.getConfig(defaults); | ||
}; | ||
var data = config.load() | ||
var data = config.load(); | ||
``` | ||
@@ -160,3 +160,3 @@ | ||
var data = config.load() | ||
var data = config.load(); | ||
``` | ||
@@ -163,0 +163,0 @@ |
15018