Skip to content

Releases: sergiofilhowz/acqua

Bug Fixes

01 Jul 20:59
Compare
Choose a tag to compare

[HOTFIX] Fixed an error that was causing the acqua to print 'dependency not found' on a existant module dependency

Dependencies and Namespaces

17 Jun 21:38
Compare
Choose a tag to compare

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

16 Nov 16:49
Compare
Choose a tag to compare

[FEATURE] Adding the function exec to run a function injecting dependencies, example:

acqua.exec(function (dependencyOne, dependencyTwo) {
    // function call
});

Bug Fixes

10 Nov 20:22
Compare
Choose a tag to compare

[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

10 Nov 14:42
Compare
Choose a tag to compare

Version 0.0.1

First Release of Acqua

[BUG] Fixed problem with the module loading order