add newline after shebang

This commit is contained in:
Sebastian McKenzie
2014-11-11 15:23:31 +11:00
parent 6bd67ca660
commit b4232699d2

View File

@@ -146,7 +146,7 @@ File.prototype.generate = function () {
if (this.shebang) {
// add back shebang
result.code = this.shebang + result.code;
result.code = this.shebang + "\n" + result.code;
}
if (opts.sourceMap === "inline") {