BREAKING: ensure import paths are case-sensitive#630
Conversation
|
One thing to think about is that Es modules as implemented in browsers will be case sensitive as far as I am aware. I believe importing the same module with different cases will execute twice in browsers. So strictly, this is implementing nonstandard behavior even though it makes the most sense. Perhaps @domenic can weigh in here as well. |
Not unless your web server serves the same body for If you want to emulate strict web servers here, using |
|
Hmmm, I've heard of this mixed case problem before. ;) |
|
Went ahead with the current implementation rather than |
Addresses #590. The suggestion there was that Rollup should warn if a module is imported twice with different casing, but to be honest I can't imagine a situation where you wouldn't want it to just fail altogether.