Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ import scalatex.ScalatexReadme

ThisBuild / shellPrompt := ((s: State) => Project.extract(s).currentRef.project + "> ")

// Issue #504 - remove on 2.x branch
// Our release GitHub Actions job performs the release for SJS 0.6 and 1.0 in parallel.
// This prevents each parallel processes from removing each other's deployment.
sonatypeSessionName := s"${name.value} v${version.value} (SJS $scalaJSVersion)"

lazy val scalafixRules = project
.in(file("scalafix"))
.settings(
Expand All @@ -17,6 +22,7 @@ lazy val root = project

name := "Scala.js DOM"

ThisBuild / version := "1.2.0"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@armanbilge erm......

ThisBuild / crossScalaVersions := {
if (scalaJSVersion.startsWith("1.")) Seq("2.12.10", "2.11.12", "2.13.1")
else Seq("2.12.10", "2.11.12", "2.10.7", "2.13.1")
Expand Down