aboutsummaryrefslogtreecommitdiffstats
path: root/build/post-compile.js
blob: 4bcafe81456c39a61381420592ad0bb8cefbf68d (plain)
1
2
3
4
5
6
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;"));