evbo
evbo
so far for me fast optimization is working, but as @Jaystified mentioned there's some painless webpack config updates anyone using webpack needs to consider. However, one unusual issue is after...
Are these issues related? Is code splitting the same as emitting multiple modules, usually for the purpose of progressively loading code for performance reasons?: https://github.com/scalacenter/scalajs-bundler/issues/115
@julienrf I'm just curious, now that scalajs has enabled code-splitting for quite some time, how do power users such as yourself and @sjrd use scalajs bundler to effectively code split?...
I never experienced this issue until upgrading recently. If I manually copy and paste my scala source files into `./target/scala-2.13/scalajs-bundler/main/` then they loaded correctly. But otherwise, "it" (scalajsbundler?) seems to...
Is the basic `sbt` configuration for multi-module builds documented? The closest to documentation I found was [the approach in this PR](https://github.com/scalacenter/scalajs-bundler/pull/4/files#diff-0cc2114e78e3ec316da5e6d67986517f) by setting `dependsOn` to another scala project that had...
I agree the OP use-case is more focused on pure scalajs modules, whereas mine is more focused on the special case of packaging scalajs code with pure scala code or...
Yes, I am using the `webpack` task [as I showed in the link](https://github.com/jrudolph/akka-http-scala-js-websocket-chat/blob/master/build.sbt#L41). But in doing so `dependsOn` isn't resulting in necessary classes being copied over to the target folder...
Thanks, yes `dependsOn` works now that I've correctly set the project as a `crossProject`: ``` lazy val common = crossProject(JSPlatform, JVMPlatform).crossType(CrossType.Pure).in(file("common")) ``` Thanks, and sorry if I've hijacked this issue...
any idea what can cause this error to occur? I randomly get it also. I usually need to delete my target directories in my sbt project and rebuild. In my...
Any further plans to support this feature? Like @georgiosd I am interested in releasing a lock on an assembly my scriptcs script holds. Currently I just quit the scriptcs so...