Sébastien Doeraene

Results 598 comments of Sébastien Doeraene

Wouldn't that be possible to do in user space using #420, then?

Thanks for the report. Can this be reproduced without scalajs-bundler?

So, here is what happens: 1. Scala 3 generates names for anonymous givens, and uses the character FULL WIDTH LOW LINE (`_`, `\uff3f`) as connector between the parts. So for...

I believe it's the same kind of issue for the source map stuff. It's that whatever code trying to parse/load the .js file to then construct source maps, somewhere inside...

CommonJS modules do not need to be IIFE'ed. Their specification says that they are semantically scoped in their own scope. If a tool breaks that semantic, it is the tool's...

A CommonJS module *is* isolated. So is an ES module. It's Webpack or its configuration that is destroying the isolation. Scala.js can't do anything.

> The issue we're trying to work around here is that the Scala.js output file isn't getting loaded into the browser in an isolated context. Is there no Scala.js output...

I will try to find some time for it this week.

`git grep useYarn` only blames `ExternalCommand` for any complexity, and it's fairly small. I'm not sure dropping support for either would actually simplify anything.

The jsdom environment, by definition and design, emulates a browser environment. So yes, it is going to hide Node.js-only functionality like the `fs` module. That is by design. If you...