Fixed some formatting errors with the output of lite.
authorJohn Resig <jeresig@gmail.com>
Mon, 14 Aug 2006 02:17:22 +0000 (02:17 +0000)
committerJohn Resig <jeresig@gmail.com>
Mon, 14 Aug 2006 02:17:22 +0000 (02:17 +0000)
build/build/lite.js

index bcfb096..650009a 100644 (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 );