You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Main difference in the build output is that Rollup now, finally,
preserves new lines correctly around code comments.
So the following:
```
foo();
// Hello
bar();
```
No longer becomes:
```
foo(); // Hello
bar();
```
0 commit comments