From e94f028c9acf124c7ec2100bc494319aba2c5eb3 Mon Sep 17 00:00:00 2001 From: Raphael Bosshard Date: Thu, 18 Jan 2024 23:54:50 +0100 Subject: [PATCH] try to enable other platforms --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index c1739c7..fd06996 100644 --- a/build.sbt +++ b/build.sbt @@ -92,7 +92,7 @@ lazy val circe = crossProject(JSPlatform, JVMPlatform, NativePlatform) ) .dependsOn(core, testkit % Test) -lazy val ujson = crossProject(JVMPlatform) +lazy val ujson = crossProject(JSPlatform, JVMPlatform, NativePlatform) .crossType(CrossType.Full) .in(file("ujson")) .settings(commonSettings: _*)