Skip to content

Commit

Permalink
re-enable "-Xsource:3"
Browse files Browse the repository at this point in the history
  • Loading branch information
satorg committed Dec 25, 2024
1 parent 22f52af commit 6ef3e78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ lazy val algebra = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.crossType(CrossType.Pure)
.in(file("algebra-core"))
.dependsOn(kernel)
.settings(moduleName := "algebra", name := "Cats algebra", scalacOptions -= "-Xsource:3")
.settings(moduleName := "algebra", name := "Cats algebra")
.settings(Compile / sourceGenerators += (Compile / sourceManaged).map(AlgebraBoilerplate.gen).taskValue)
.jsSettings(commonJsSettings)
.jvmSettings(commonJvmSettings)
Expand All @@ -157,7 +157,7 @@ lazy val algebra = crossProject(JSPlatform, JVMPlatform, NativePlatform)
lazy val algebraLaws = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.in(file("algebra-laws"))
.dependsOn(kernelLaws, algebra)
.settings(moduleName := "algebra-laws", name := "Cats algebra laws", scalacOptions -= "-Xsource:3")
.settings(moduleName := "algebra-laws", name := "Cats algebra laws")
.settings(disciplineDependencies)
.settings(testingDependencies)
.jsSettings(commonJsSettings)
Expand Down

0 comments on commit 6ef3e78

Please sign in to comment.