scala-3-migration-guide icon indicating copy to clipboard operation
scala-3-migration-guide copied to clipboard

add note about disabling doc generation

Open tpolecat opened this issue 3 years ago • 0 comments

The SBT setup page should include a note somewhere about disabling doc generation for Scala 3 because it doesn't quite work and it will hit 100% of library authors trying to publish.

  Compile / doc / sources := {
    val old = (Compile / doc / sources).value
    if (isDotty.value)
      Seq()
    else
      old
  }

tpolecat avatar Nov 10 '20 02:11 tpolecat