File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed
tests/shared/src/test/scala/org/typelevel/toolkit Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ addSbtPlugin("org.typelevel" % "sbt-typelevel" % sbtTlVersion)
33addSbtPlugin(" org.typelevel" % " sbt-typelevel-mergify" % sbtTlVersion)
44addSbtPlugin(" org.typelevel" % " sbt-typelevel-site" % sbtTlVersion)
55addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.14.0" )
6- addSbtPlugin(" org.scala-native" % " sbt-scala-native" % " 0.4.15 " )
6+ addSbtPlugin(" org.scala-native" % " sbt-scala-native" % " 0.4.16 " )
77addSbtPlugin(" com.eed3si9n" % " sbt-buildinfo" % " 0.11.0" )
Original file line number Diff line number Diff line change @@ -75,13 +75,9 @@ object ScalaCliProcess {
7575 def command (args : List [String ]): IO [Unit ] = scalaCli(args)
7676
7777 def run (body : String ): IO [Unit ] =
78- writeToFile(body)(false ).use(f =>
79- scalaCli(" run" :: " --native-version" :: " 0.4.15" :: f :: Nil )
80- )
78+ writeToFile(body)(false ).use(f => scalaCli(" run" :: f :: Nil ))
8179
8280 def test (body : String ): IO [Unit ] =
83- writeToFile(body)(true ).use(f =>
84- scalaCli(" test" :: " --native-version" :: " 0.4.15" :: f :: Nil )
85- )
81+ writeToFile(body)(true ).use(f => scalaCli(" test" :: f :: Nil ))
8682
8783}
You can’t perform that action at this time.
0 commit comments