Skip to content

Commit

Permalink
Format build files
Browse files Browse the repository at this point in the history
  • Loading branch information
s5bug committed Mar 21, 2024
1 parent b43ff0a commit 29d25e4
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ ThisBuild / tlJdkRelease := Some(22)
ThisBuild / githubWorkflowJavaVersions := Seq(
JavaSpec.graalvm("22")
)
ThisBuild / githubWorkflowOSes ++= Seq("macos-latest", "macos-14", "windows-latest")
ThisBuild / githubWorkflowOSes ++= Seq(
"macos-latest",
"macos-14",
"windows-latest"
)

lazy val root = tlCrossRootProject.aggregate(core)

Expand All @@ -34,11 +38,12 @@ lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform)
.settings(
name := "dirs",
libraryDependencies ++= Seq(
"org.scalameta" %%% "munit" % "1.0.0-M11" % Test,
"org.scalameta" %%% "munit" % "1.0.0-M11" % Test
),
headerEndYear := Some(2024)
)

lazy val docs = project.in(file("site"))
lazy val docs = project
.in(file("site"))
.settings(headerEndYear := Some(2024))
.enablePlugins(TypelevelSitePlugin)

0 comments on commit 29d25e4

Please sign in to comment.