Make the comment a part of the module.

pull/405/head
Chad Weider 2012-01-31 14:03:10 -08:00
parent ebb5055ce8
commit ddc74cd0f1
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@ function tarCode(jsFiles, write, callback) {
function handleFile(err, data) { function handleFile(err, data) {
if(ERR(err, callback)) return; if(ERR(err, callback)) return;
write("\n\n\n/*** File: static/js/" + item + " ***/\n\n\n"); data = ("\n\n\n/*** File: static/js/" + item + " ***/\n\n\n") + data;
if (settings.minify) { if (settings.minify) {
write(compressJS([isolateJS(data, item)]) + ';\n'); write(compressJS([isolateJS(data, item)]) + ';\n');
} else { } else {