Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
Merge pull request #24 from reibitto/securerandom-scala3
Browse files Browse the repository at this point in the history
Use CrossVersion.for3Use2_13 for scalajs-java-securerandom
  • Loading branch information
vigoo authored Jun 28, 2022
2 parents 664a1e4 + f946c1a commit 400b04b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions project/BuildHelper.scala
Original file line number Diff line number Diff line change
Expand Up @@ -282,9 +282,9 @@ object BuildHelper {
)

def jsSettings = Seq(
libraryDependencies += "io.github.cquiroz" %%% "scala-java-time" % SjsJavaTimeVersion,
libraryDependencies += "io.github.cquiroz" %%% "scala-java-time-tzdb" % SjsJavaTimeVersion,
libraryDependencies += "org.scala-js" %%% "scalajs-java-securerandom" % "1.0.0"
libraryDependencies += "io.github.cquiroz" %%% "scala-java-time" % SjsJavaTimeVersion,
libraryDependencies += "io.github.cquiroz" %%% "scala-java-time-tzdb" % SjsJavaTimeVersion,
libraryDependencies += ("org.scala-js" %%% "scalajs-java-securerandom" % "1.0.0").cross(CrossVersion.for3Use2_13)
)

def nativeSettings = Seq(
Expand Down

0 comments on commit 400b04b

Please sign in to comment.