Skip to content

Commit

Permalink
Fix typos in build.sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
rucek committed Sep 28, 2023
1 parent ad396fc commit 4e439c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ lazy val generateMimeByExtensionDB = taskKey[Unit]("Generate the mime by extensi

concurrentRestrictions in Global ++= Seq(
Tags.limit(Tags.Test, 1),
// By default dependencies of test can be run in parallel, it includeds Scala Native/Scala.js linkers
// Limit them to lower memory usage, especially when targetting LLVM
// By default dependencies of test can be run in parallel, it includes Scala Native/Scala.js linkers
// Limit them to lower memory usage, especially when targeting LLVM
Tags.limit(NativeTags.Link, 1),
Tags.limit(ScalaJSTags.Link, 1)
)
Expand Down Expand Up @@ -67,7 +67,7 @@ val commonSettings = commonSmlBuildSettings ++ ossPublishSettings ++ Seq(
}.value,
mimaPreviousArtifacts := Set.empty, // we only use MiMa for `core` for now, using enableMimaSettings
ideSkipProject := (scalaVersion.value == scala2_12) ||
(scalaVersion.value == scala2_13) ||
(scalaVersion.value == scala3) ||
thisProjectRef.value.project.contains("Native") ||
thisProjectRef.value.project.contains("JS"),
bspEnabled := !ideSkipProject.value,
Expand Down

0 comments on commit 4e439c8

Please sign in to comment.