diff options
Diffstat (limited to 'build/post-compile.js')
-rw-r--r-- | build/post-compile.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/build/post-compile.js b/build/post-compile.js new file mode 100644 index 000000000..4bcafe814 --- /dev/null +++ b/build/post-compile.js @@ -0,0 +1,7 @@ +#!/usr/bin/env node + +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;")); |