You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using scala-cli as a build server in Metals and you try to add an import that has a version that doesn't exist, it seems to shut down the build server and restart it constantly. This ends up looking like this:
The bottom part of the screen is the BSP logs and it basically shows diagnostics being returned that it can't find the dependency, then there is a build/shutdown, and then immediately another build/initialize that just goes on and on.
You can reproduce this with the following file:
import $dep.`com.lihaoyi::requests:0.6.5` // <-- doesn't exist in Scala 3
object Main extends App {
println("hi")
}
Then the moment you comment it out, it stops.
The text was updated successfully, but these errors were encountered:
When using
scala-cli
as a build server in Metals and you try to add an import that has a version that doesn't exist, it seems to shut down the build server and restart it constantly. This ends up looking like this:The bottom part of the screen is the BSP logs and it basically shows diagnostics being returned that it can't find the dependency, then there is a
build/shutdown
, and then immediately anotherbuild/initialize
that just goes on and on.You can reproduce this with the following file:
Then the moment you comment it out, it stops.
The text was updated successfully, but these errors were encountered: