Releases: sergiofilhowz/acqua
Releases · sergiofilhowz/acqua
Bug Fixes
Dependencies and Namespaces
Version 0.0.4
[HOTFIX] Fixed an error that message wasn't shown on Error stacktrace
[FEATURE] Namespaces: two new functions on acqua instance
createNamespace ( name )
: will create an acqua instance namespace and return the instance
namespace ( name )
: will return a previously namespace instance
[FEATURE] Acqua Dependencies: new option added on construtor to define acqua dependency
var acqua = new Acqua({
dependencies : [ anotherAcqua ]
});
0.0.3
[FEATURE] Adding the function exec to run a function injecting dependencies, example:
acqua.exec(function (dependencyOne, dependencyTwo) {
// function call
});
Bug Fixes
[BUG] Fixed a problem that was sharing every function in the same object instance, causing conflicts in 2 modules with the same function name.
First stable version
Version 0.0.1
First Release of Acqua
[BUG] Fixed problem with the module loading order