mergejs should print a newline between imports

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2017-03-31 17:06:38 +02:00
parent 57020a0c36
commit 04fc00fcdf
No known key found for this signature in database
GPG Key ID: F941078878347C0C
2 changed files with 24 additions and 7 deletions

View File

@ -31,5 +31,6 @@ $vendors = $data['vendor'];
$vendorjs = fopen(__DIR__.'/../core/vendor/core.js', 'w');
foreach($vendors as $vendor) {
fwrite($vendorjs, file_get_contents(__DIR__.'/../core/vendor/'.$vendor));
fwrite($vendorjs, PHP_EOL);
}
fclose($vendorjs);

30
core/vendor/core.js vendored

File diff suppressed because one or more lines are too long