Comparing version 0.3.15 to 0.3.16
// Generated by CoffeeScript 1.12.7 | ||
var annotateConfig, append, chain, createAnnotation, dirname, mergeAll, ref; | ||
var annotateConfig, append, chain, createAnnotation, dirname, identity, map, mergeAll, ref; | ||
dirname = require('path').dirname; | ||
ref = require('ramda'), chain = ref.chain, append = ref.append, mergeAll = ref.mergeAll; | ||
ref = require('ramda'), chain = ref.chain, identity = ref.identity, append = ref.append, map = ref.map, mergeAll = ref.mergeAll; | ||
@@ -16,3 +16,3 @@ createAnnotation = require('./create-annotation'); | ||
parents = (ref1 = config.parents) != null ? ref1 : []; | ||
parentAnnotations = chain(function(p) { | ||
parentAnnotations = map(function(p) { | ||
var configFile, moduleDir, nodeModule, parentConfig, parentPath; | ||
@@ -19,0 +19,0 @@ nodeModule = p.nodeModule, configFile = p.configFile; |
@@ -39,3 +39,3 @@ // Generated by CoffeeScript 1.12.7 | ||
}), cleanModules); | ||
return Promise.all(map(analyzeFileDependencies, Object.entries(resolvedModules))); | ||
return Promise.all(map(analyzeFileDependencies, Object.entries(resolvedModules))).then(mergeAll); | ||
}; |
{ | ||
"name": "amend", | ||
"version": "0.3.15", | ||
"version": "0.3.16", | ||
"description": "Dependency injection module and IoC container.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
47958