File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
scaladoc/src/dotty/tools/scaladoc/tasty Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -408,7 +408,7 @@ object projects:
408
408
sbtTestCommand = " testsJVM/test;testsJS/test;" ,
409
409
// Hardcode the version to avoid having to deal with something set by sbt-dynver
410
410
sbtPublishCommand = s """ set every version := " ${Versions .munit}"; munitJVM/publishLocal; munitJS/publishLocal; munitScalacheckJVM/publishLocal; munitScalacheckJS/publishLocal; junit/publishLocal """ ,
411
- sbtDocCommand = " munitJVM/doc" ,
411
+ sbtDocCommand = " junit/doc; munitJVM/doc" ,
412
412
dependencies = List (scalacheck)
413
413
)
414
414
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ case class ScaladocTastyInspector()(using ctx: DocContext) extends DocTastyInspe
123
123
val filePaths = ctx.args.tastyFiles.map(_.getAbsolutePath).toList
124
124
val classpath = ctx.args.classpath.split(java.io.File .pathSeparator).toList
125
125
126
- inspectFilesInContext(classpath, filePaths)
126
+ if filePaths.nonEmpty then inspectFilesInContext(classpath, filePaths)
127
127
128
128
val all = topLevels.result()
129
129
all.groupBy(_._1).map { case (pckName, members) =>
You can’t perform that action at this time.
0 commit comments