add newline after shebang
This commit is contained in:
@@ -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") {
|
||||
|
||||
Reference in New Issue
Block a user