Skip to content

Commit

Permalink
Build: Add MiMa (on-demand advisory only)
Browse files Browse the repository at this point in the history
  • Loading branch information
raquo committed Dec 13, 2024
1 parent 7b01cbe commit ca8584d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
7 changes: 1 addition & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
target

.metals
metals.sbt
.bloop
.bsp

Expand All @@ -17,9 +18,3 @@ yarn.lock
!website/yarn.lock

.downloads

website/node_modules
website/build
website/i18n/*

websiteJS/package-lock.json
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ enablePlugins(ScalaJSPlugin)

enablePlugins(ScalaJSBundlerPlugin)

lazy val preload = taskKey[Unit]("runs Laminar-specific pre-load tasks")
lazy val preload = taskKey[Unit]("runs Airstream-specific pre-load tasks")

preload := {
val projectDir = (ThisBuild / baseDirectory).value
Expand All @@ -28,6 +28,9 @@ Global / onLoad := {
(Global / onLoad).value andThen { state => preload.key.label :: state }
}

mimaPreviousArtifacts := Set("com.raquo" %%% "airstream" % "17.1.0")


libraryDependencies ++= Seq(
"org.scala-js" %%% "scalajs-dom" % Versions.ScalaJsDom,
"app.tulz" %%% "tuplez-full-light" % Versions.Tuplez,
Expand Down
2 changes: 2 additions & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.11")
addSbtPlugin("com.github.sbt" % "sbt-git" % "2.0.1")

addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")

addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.4")

0 comments on commit ca8584d

Please sign in to comment.