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(
120
120
Test / fork := true
121
121
)
122
122
.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)
124
131
)
125
132
126
133
lazy 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" )
2
2
addSbtPlugin(" org.portable-scala" % " sbt-scalajs-crossproject" % " 1.1.0" )
3
3
addSbtPlugin(" com.github.sbt" % " sbt-ci-release" % " 1.5.10" )
4
4
You can’t perform that action at this time.
0 commit comments