Skip to content

Commit

Permalink
fixes #37 default value for pack is false
Browse files Browse the repository at this point in the history
  • Loading branch information
azproduction committed Sep 22, 2012
1 parent ec60719 commit d24588f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/lmd_builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -1100,7 +1100,7 @@ LmdBuilder.prototype.build = function (callback) {

var lazy = config.lazy || false,
mainModuleName = config.main,
pack = lazy ? true : typeof config.pack === "undefined" ? true : config.pack,
pack = lazy ? true : (config.pack || false),
moduleContent,
lmdModules = [],
sandbox,
Expand Down

0 comments on commit d24588f

Please sign in to comment.