Comparing version 0.1.9 to 0.1.10
@@ -242,3 +242,7 @@ ( // Module boilerplate to support node.js and AMD. | ||
} else { | ||
tryNext(resolve(base, '..')); | ||
var nextBase = resolve(base, '..'); | ||
if (nextBase === base) | ||
tryNext(null); | ||
else | ||
tryNext(nextBase); | ||
} | ||
@@ -425,3 +429,3 @@ }); | ||
app.emit("plugin", plugin); | ||
process.nextTick(startPlugins); | ||
startPlugins(); | ||
} | ||
@@ -428,0 +432,0 @@ } |
{ | ||
"name": "architect", | ||
"description": "A Simple yet powerful plugin system for node applications", | ||
"version": "0.1.9", | ||
"version": "0.1.10", | ||
"author": "ajax.org B.V. <info@ajax.org>", | ||
@@ -6,0 +6,0 @@ "contributors": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
23320
465