Skip to content

Commit 0558a55

Browse files
author
Richard Feldman
committed
Put a newline at the end of the compiled CSS for great POSIX justice.
1 parent 97e2974 commit 0558a55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ tmp.dir({unsafeCleanup: true}, function (err, tmpDirPath, cleanup) {
2929
fs.appendFileSync(emitterDest, "\nmodule.exports = Elm;");
3030

3131
var Elm = require(emitterDest);
32-
var compiledCss = Elm.worker(Elm[elmModuleName]).ports.css;
32+
var compiledCss = Elm.worker(Elm[elmModuleName]).ports.css + "\n";
3333

3434
fs.writeFileSync(destCssFile, compiledCss);
3535
}, function(exitCode) {

0 commit comments

Comments
 (0)