Nikita Gazarov
Nikita Gazarov
I've been looking for more info of how inline classes work, here are a couple explanations: https://gitter.im/scala-js/scala-js?at=561531aece6e633c4518d5a4 https://gitter.im/scala-js/scala-js?at=57e2fb8f27a8458f7f34f3e7 So if I understand correctly, all usages of a given instance of...
The thing is, I _do_ need to inline both the `Setter` class and the `setHtmlAttribute` function in order to avoid instantiation of `ReactiveHtmlAttr`, because currently an instance of `ReactiveHtmlAttr` escapes...
I feel like our trait files are simple enough that you don't even need Scala-aware code generators to generate them. A simple Scala or JS script that concatenates strings will...
So it turns out that these comments are not available in ScalaTags either. Getting them from MDN directly is a lot more work, so I'll be releasing v0.6 without this.
Looks like there's two distinct problems here: P1) Provide type of parent element to keys (attrs / props / etc.) P2) Restrict type of parent element for each key Regarding...
Hmm instead of defining `value` as `ApplesTo[ParentEl: dom.html.Button | dom.html.Input | dom.html.Option]` we could define somewhat like this: Note: I haven't tried to compile any of that. Not sure if...
I have a similar looking issue that started yesterday, on an intel mac on macos catalina 10.15.7. Strangely, it was working fine until I rebooted. I'm not 100% sure, but...
@fdietze Check out the [`watchOptions`](https://webpack.js.org/configuration/watch/) property on `devServer` config, it has a couple options that might help depending on your sbt config: `aggregateTimeout` and ~`exclude`~ `ignored`. The latter supports `filename...
Is this related to https://github.com/scalacenter/scalajs-bundler/issues/38 ? I'm getting "ReferenceError: exports is not defined" when trying to run tests with scala js bundler and jsdom... It seems that both tickets refer...
Thanks! I *think* I was using the `test` command with `jsDependencies += RuntimeDOM % Test` instead of the `requiresDOM` line you mentioned. Although I did try `testHtmlFastOpt` with the same...