Skip to content

Commit

Permalink
Remove unwanted semicolon in assets files (#2280)
Browse files Browse the repository at this point in the history
  • Loading branch information
nlssn authored Sep 1, 2020
1 parent f939d16 commit 384edfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Frontend/Compiler/JsCompiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ protected function save(string $file, array $sources): bool
*/
protected function format(string $string): string
{
return preg_replace('~//# sourceMappingURL.*$~m', '', $string).";\n";
return preg_replace('~//# sourceMappingURL.*$~m', '', $string)."\n";
}

/**
Expand Down

0 comments on commit 384edfa

Please sign in to comment.