Fixed some formatting errors with the output of lite.

This commit is contained in:
John Resig 2006-08-14 02:17:22 +00:00
parent f8402b9a08
commit 7e5a2bd738

View file

@ -1,6 +1,6 @@
load("build/js/writeFile.js");
var blockMatch = /\s*\/\*\*\s*((.|\n)*?)\n*\*\/\s*/g;
var f = readFile(arguments[0]).replace( blockMatch, "" );
var blockMatch = /\s*\/\*\*\s*((.|\n)*?)\s*\*\/\n*/g;
var f = readFile(arguments[0]).replace( blockMatch, "\n" );
writeFile( arguments[1], f );