From 29d25e4012d66f79ce11dc594694a4770afd2193 Mon Sep 17 00:00:00 2001 From: Aly Date: Thu, 21 Mar 2024 12:26:53 -0700 Subject: [PATCH] Format build files --- build.sbt | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 02e11ba..934cf42 100644 --- a/build.sbt +++ b/build.sbt @@ -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) @@ -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)