Skip to content

Commit

Permalink
set empty to Test / sources if scala 3 js projects
Browse files Browse the repository at this point in the history
  • Loading branch information
xuwei-k committed Jul 26, 2021
1 parent cc0cdb1 commit 02882a4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,14 @@ lazy val commonJsSettings = Seq(
specs2.value
}
},
Test / sources := {
if (scalaBinaryVersion.value == "3") {
// TODO
Nil
} else {
(Test / sources).value
}
},
parallelExecution := false,
scalacOptions += {
val a = (LocalRootProject / baseDirectory).value.toURI.toString
Expand Down

0 comments on commit 02882a4

Please sign in to comment.