Skip to content

Commit

Permalink
Update acyclic_2.13.12 to 0.3.10 (#1144)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored Feb 21, 2024
1 parent 29166c6 commit a916996
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -178,12 +178,12 @@ lazy val core =
munit.value % Test,
munitScalaCheck.value % Test,
// needed for acyclic which we run periodically, not all the time
"com.lihaoyi" % "acyclic_2.13.12" % "0.3.9" % "provided"
"com.lihaoyi" % "acyclic_2.13.12" % "0.3.10" % "provided"
)
// periodically we use acyclic to ban cyclic dependencies and make compilation faster
,
autoCompilerPlugins := true,
addCompilerPlugin("com.lihaoyi" % "acyclic_2.13.12" % "0.3.9"),
addCompilerPlugin("com.lihaoyi" % "acyclic_2.13.12" % "0.3.10"),
scalacOptions += "-P:acyclic:force"
).dependsOn(base)
.jsSettings(commonJsSettings)
Expand Down Expand Up @@ -212,7 +212,9 @@ lazy val jsapi =
lazy val jsapiJS = jsapi.js

lazy val jsui =
(crossProject(JSPlatform, JVMPlatform).crossType(CrossType.Pure) in file("jsui"))
(crossProject(JSPlatform, JVMPlatform).crossType(CrossType.Pure) in file(
"jsui"
))
.settings(
commonSettings,
commonJsSettings,
Expand All @@ -224,7 +226,7 @@ lazy val jsui =
ff4s.value,
scalaCheck.value % Test,
munit.value % Test,
munitScalaCheck.value % Test,
munitScalaCheck.value % Test
)
)
.enablePlugins(ScalaJSPlugin)
Expand Down

0 comments on commit a916996

Please sign in to comment.