Skip to content
This repository has been archived by the owner on Mar 20, 2019. It is now read-only.

Commit

Permalink
Merge pull request #18 from mixu/master
Browse files Browse the repository at this point in the history
Fix extra semicolon
  • Loading branch information
rauchg committed Apr 27, 2012
2 parents 18b45f7 + add675b commit 205dbb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/browserbuild.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Renderer.prototype.render = function(done){
+ this.paths.reduce(function(str, path) { + this.paths.reduce(function(str, path) {
return str + self._render(path); return str + self._render(path);
}, '') }, '')
+ (opt.global || opt.main) + ' = require(\'' + mod + '\');\n'; + (opt.global || opt.main) + ' = require(\'' + mod + '\');\n'
+ '})();'; + '})();';


done(undefined, data); done(undefined, data);
Expand Down

0 comments on commit 205dbb5

Please sign in to comment.