amd-config-builder
Advanced tools
Comparing version 0.1.3 to 0.2.0
@@ -93,3 +93,3 @@ var path = require('path'), | ||
} | ||
return firstPass.concat(secondPass); | ||
return firstPass.concat(secondPass).reverse(); | ||
} | ||
@@ -124,3 +124,3 @@ | ||
_.merge(result, json, function (a, b) { | ||
return _.isArray(a) ? a.concat(b) : undefined; | ||
return _.isArray(a) ? b.concat(a) : undefined; | ||
}); | ||
@@ -127,0 +127,0 @@ } |
{ | ||
"name": "amd-config-builder", | ||
"version": "0.1.3", | ||
"version": "0.2.0", | ||
"description": "Builds amd config for a project from configs of its components", | ||
@@ -5,0 +5,0 @@ "main": "lib/config-builder.js", |
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
10083