Skip to content

Commit

Permalink
Merge pull request #112 from typelevel/update/nscplugin-0.4.16
Browse files Browse the repository at this point in the history
Update nscplugin, sbt-scala-native, ... to 0.4.16
  • Loading branch information
armanbilge authored Nov 14, 2023
2 parents 07b824d + 220d5b0 commit 1d85da4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ addSbtPlugin("org.typelevel" % "sbt-typelevel" % sbtTlVersion)
addSbtPlugin("org.typelevel" % "sbt-typelevel-mergify" % sbtTlVersion)
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % sbtTlVersion)
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.14.0")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.15")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.16")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,9 @@ object ScalaCliProcess {
def command(args: List[String]): IO[Unit] = scalaCli(args)

def run(body: String): IO[Unit] =
writeToFile(body)(false).use(f =>
scalaCli("run" :: "--native-version" :: "0.4.15" :: f :: Nil)
)
writeToFile(body)(false).use(f => scalaCli("run" :: f :: Nil))

def test(body: String): IO[Unit] =
writeToFile(body)(true).use(f =>
scalaCli("test" :: "--native-version" :: "0.4.15" :: f :: Nil)
)
writeToFile(body)(true).use(f => scalaCli("test" :: f :: Nil))

}

0 comments on commit 1d85da4

Please sign in to comment.