Skip to content

Commit 7f83159

Browse files
authored
Merge pull request #1770 from Shadow243/fix-site.js-generation
fix(frontend): site.js generation comments mixup
2 parents 24f03a0 + b158c4b commit 7f83159

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/js_libs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function get_js_libs_content($exclude_deps = []) {
2727

2828
foreach (JS_LIBS as $key => $dep) {
2929
if (!in_array($key, $exclude_deps)) {
30-
$js_lib .= file_get_contents(APP_PATH.$dep);
30+
$js_lib .= file_get_contents(APP_PATH.$dep) . "\n";
3131
}
3232
}
3333
return $js_lib;

0 commit comments

Comments
 (0)