Skip to content

Commit

Permalink
Ensure that an endline is in place at the end of the minified jQuery …
Browse files Browse the repository at this point in the history
…file.
  • Loading branch information
jeresig committed May 2, 2011
1 parent f4b5d3f commit f8a112f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/post-compile.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ var print = require("sys").print,
src = require("fs").readFileSync(process.argv[2], "utf8");

// Previously done in sed but reimplemented here due to portability issues
print(src.replace(/^(\s*\*\/)(.+)/m, "$1\n$2;"));
print(src.replace(/^(\s*\*\/)(.+)/m, "$1\n$2;").replace(/([^;]*)$/, "$1;"));

0 comments on commit f8a112f

Please sign in to comment.