Add newline in-between JS files, in case last line is a comment

This commit is contained in:
Toby Zerner 2015-06-11 18:42:26 +09:30
parent 42fe2a28dd
commit 48e33591c9

View File

@ -4,6 +4,6 @@ class JsCompiler extends RevisionCompiler
{
public function format($string)
{
return $string.';';
return $string.";\n";
}
}