Results 165 comments of Daniel

Changing this in my entry `index.html` fixed it for me. Weird that I had no issues on 2.0.1. ```diff diff --git a/app/public/index.html b/app/public/index.html index 2b0e175da..1efda18df 100644 --- a/app/public/index.html +++ b/app/public/index.html...

When changing the build target to `ie 11` my builds fail with `Uncaught Error: Cannot find module '2B7l9'` :( Cleaning build cache doesn't work.

Just wanted to chime in that I also noticed this and was about to open an issue. For some reason terser inlines variables with long variable names - which parcel...

I saw this was merged https://github.com/terser/terser/pull/661 but it doesn't seem to have fixed it? Here's what I wanted to post to reproduce, enter this into https://try.terser.org/: ``` const $c426863bb391d48c0e057e38c916800f$var$car_sel =...

@sirian Thanks for the links, interesting issues! This is not the same though as I suggest assigning a bound function to a variable and call that. I think it would...

@jridgewell fair point, but what if I know it's not going to get polyfilled? Why not put it behind an `unsafe` option?

> It not being logged to the console seems to happen because the error event is considered handled somewhere along the way - where or why that happens I have...

> cssnano merges the two rules but still leaves two conflicting statements in the same block. Input: ``` @media screen and (min-width:1601px) { .container .card { margin-right: 0 } }...

> the order of the rules input: ``` @media screen and (min-width:1601px) { .container .card:not(.nomargin) { width: 15%; margin-right: 1%; margin-left: 1% } .container .card:not(.nomargin):nth-child(6n) { margin-right: 0 } .container...

> Can you try using cssnano@nightly once and check if its same or not I'll try.