Fixed some formatting errors with the output of lite.

1.7/enhancement_8685
John Resig 2006-08-14 02:17:22 +00:00
parent f8402b9a08
commit 7e5a2bd738
1 changed files with 2 additions and 2 deletions

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 );