File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,14 @@ lazy val runtime = CrossProject(
120120 Test / fork := true
121121 )
122122 .jsSettings(
123- scalaJSStage := FastOptStage
123+ scalaJSStage := FastOptStage ,
124+ // While not exactlu ideal, this is only used in the invoker to assign a
125+ // unique id to ensure measurements have unique ids. It's never exposed to
126+ // the user and doesn't touch anything sensitve, so we should have no
127+ // issues here. Still, I don't like having this, so we should try to
128+ // replace it.
129+ libraryDependencies += (" org.scala-js" %%% " scalajs-fake-insecure-java-securerandom" % " 1.0.0" )
130+ .cross(CrossVersion .for3Use2_13)
124131 )
125132
126133lazy val `runtimeJVM` = runtime.jvm
Original file line number Diff line number Diff line change 1- addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.8 .0" )
1+ addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.10 .0" )
22addSbtPlugin(" org.portable-scala" % " sbt-scalajs-crossproject" % " 1.1.0" )
33addSbtPlugin(" com.github.sbt" % " sbt-ci-release" % " 1.5.10" )
44
You can’t perform that action at this time.
0 commit comments