Skip to content

Commit f8bad04

Browse files
committed
Build: Modify uglify.js to include a newline charakter after the copyright comment, makes diffing against new build a little bit more efficient
1 parent 5e6fc4f commit f8bad04

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build/build/uglify.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ function show_copyright(comments) {
230230
if (c.type == "comment1") {
231231
ret += "//" + c.value + "\n";
232232
} else {
233-
ret += "/*" + c.value + "*/";
233+
ret += "/*" + c.value + "*/\n";
234234
}
235235
}
236236
return ret;

0 commit comments

Comments
 (0)