mirror of https://github.com/lukechilds/rollup.git
Browse Source
Without this change, you can get malformed stuff like this: var foo = function() { return "foo"; }var bar = function() { return "bar"; } By introducing a newline, a semicolon is implicitly inserted between statements when necessary: var foo = function() { return "foo"; } var bar = function() { return "bar"; } The indentation as a result of this commit is off, but I’m not sure how to fix it because the build fails for me. (I tested this by editing dist directly.)contingency-plan
2 changed files with 2 additions and 2 deletions
Loading…
Reference in new issue