Skip to content

Commit

Permalink
Use sbt-tpolecat's DevMode if CI env var is not set (#3233)
Browse files Browse the repository at this point in the history
  • Loading branch information
fthomas authored Dec 5, 2023
1 parent 9ac858c commit 0dd0d80
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ ThisBuild / dynverSeparator := "-"

ThisBuild / evictionErrorLevel := Level.Info

ThisBuild / tpolecatDefaultOptionsMode := {
if (insideCI.value) org.typelevel.sbt.tpolecat.CiMode else org.typelevel.sbt.tpolecat.DevMode
}

/// projects

lazy val root = project
Expand Down

0 comments on commit 0dd0d80

Please sign in to comment.