Open olafurpg opened 3 years ago
Oh, that's why tests pass locally for me in https://github.com/scalameta/metabrowse/pull/269…
FYI: I've temporarily "fixed" the same error in my project with the following sbt
config, to continue generate full opt code:
scalaJSLinkerConfig in fullOptJS ~= {
_.withOptimizer(false)
}
To unblock the Scala.js v1.0 upgrade, we updated the build to use only fastOptJS instead of fullOptJS. Full optimization was failing with the following error from com.google.javascript.jscomp
We should figure out what's causing this error and start using fullOptJS again