Skip to content

Commit

Permalink
Include css
Browse files Browse the repository at this point in the history
  • Loading branch information
malliina committed Sep 28, 2024
1 parent a86d342 commit 6571f8a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
15 changes: 11 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ val logstreamsDep = malliinaGroup %% "logstreams-client" % "1.10.1"

val httpGroup = "org.apache.httpcomponents"

ThisBuild / scalaVersion := "2.13.12"
ThisBuild / scalaVersion := "2.13.15"

val utilAudio = Project("util-audio", file("util-audio"))
.enablePlugins(MavenCentralPlugin)
Expand Down Expand Up @@ -253,6 +253,9 @@ lazy val pimpPlaySettings =
!af.data.getAbsolutePath.endsWith(s"bundles\\nv-websocket-client-$nvWebSocketVersion.jar")
},
Runtime / managedClasspath += (Assets / packageBin).value,
Assets / mappings ++= Seq(
(musicpimpFrontend / Compile / npmUpdate / crossTarget).value / "styles.css" -> "styles.css"
),
useTerminateProcess := true,
Windows / msiMappings := (Windows / msiMappings).value.map {
case (src, dest) =>
Expand Down Expand Up @@ -422,10 +425,14 @@ lazy val pimpcloudScalaJSSettings = Seq(
def serverSettings = LinusPlugin.playSettings ++ Seq(
// https://github.com/sbt/sbt-release
releaseProcess := Seq[ReleaseStep](
releaseStepTask(Compile / clean),
checkSnapshotDependencies,
runTest,
releaseStepTask(ciBuild)
inquireVersions,
setReleaseVersion,
commitReleaseVersion,
tagRelease,
setNextVersion,
commitNextVersion,
pushChanges
),
buildInfoKeys := Seq[BuildInfoKey](
name,
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
scalaVersion := "2.12.18"
scalacOptions ++= Seq("-unchecked", "-deprecation", "-language:implicitConversions")

val utilsVersion = "1.6.30"
val utilsVersion = "1.6.40"

Seq(
"com.typesafe.play" % "sbt-plugin" % "2.8.20",
"com.malliina" % "sbt-utils-maven" % utilsVersion,
"com.malliina" % "sbt-nodejs" % utilsVersion,
"com.malliina" % "sbt-filetree" % utilsVersion,
"com.malliina" % "sbt-packager" % "2.10.1",
"org.scala-js" % "sbt-scalajs" % "1.14.0",
"org.scala-js" % "sbt-scalajs" % "1.17.0",
"org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2",
"com.vmunier" % "sbt-web-scalajs" % "1.2.0",
"com.typesafe.sbt" % "sbt-digest" % "1.1.4",
Expand Down

0 comments on commit 6571f8a

Please sign in to comment.