Comparing version 0.6.9 to 0.7.0
@@ -97,3 +97,3 @@ // Ender: open module JavaScript framework | ||
async.waterfall([ | ||
async.apply(ENDER.npm.install, newPackages) | ||
async.apply(ENDER.npm.install, newPackages, options) | ||
, async.apply(ENDER.file.assemble, uniqueActivePackageNames, options) | ||
@@ -105,4 +105,4 @@ , writeSource | ||
async.parallel([ | ||
async.apply(ENDER.file.output, source, options.output, context) | ||
, async.apply(ENDER.file.uglify, source, options.output, context) | ||
async.apply(ENDER.file.output, source, options.output, context, options) | ||
, async.apply(ENDER.file.uglify, source, options.output, context, options) | ||
], callback) | ||
@@ -136,3 +136,3 @@ } | ||
console.log('Nothing to uninstall.') | ||
return callback() | ||
return callback && callback() | ||
} | ||
@@ -152,4 +152,4 @@ | ||
async.parallel([ | ||
async.apply(ENDER.file.output, source, options.output, context) | ||
, async.apply(ENDER.file.uglify, source, options.output, context) | ||
async.apply(ENDER.file.output, source, options.output, context, options) | ||
, async.apply(ENDER.file.uglify, source, options.output, context, options) | ||
], callback) | ||
@@ -156,0 +156,0 @@ } |
{ | ||
"name": "ender", | ||
"description": "next level JavaScript modules", | ||
"version": "0.6.9", | ||
"version": "0.7.0", | ||
"authors": ["Dustin Diaz <@ded>", "Jacob Thornton <@fat>"], | ||
@@ -6,0 +6,0 @@ "keywords": ["ender", "modules", "builder", "framework", "packager"], |
4355512