diff --git a/build.sbt b/build.sbt index 055738d..d35acaf 100644 --- a/build.sbt +++ b/build.sbt @@ -12,13 +12,13 @@ lazy val docs = project lazy val root = tlCrossRootProject.aggregate(core) -lazy val core = crossProject(JSPlatform, JVMPlatform) +lazy val core = crossProject(JSPlatform, JVMPlatform, NativePlatform) .crossType(CrossType.Pure) .in(file("core")) .settings( name := "munit-cats-effect", libraryDependencies ++= Seq( "org.scalameta" %%% "munit" % "1.0.0-M6", - "org.typelevel" %%% "cats-effect" % "3.3.14" + "org.typelevel" %%% "cats-effect" % "3.3.14-1-5d11fe9" ) ) diff --git a/project/plugins.sbt b/project/plugins.sbt index 6de39e8..307a3dd 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.1") addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.13") addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.4.13") +addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.7") +addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.2.0")