-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
25 lines (22 loc) · 814 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Global / onChangedBuildSource := ReloadOnSourceChanges
lazy val scala213 = "2.13.6"
inThisBuild(
scalaVersion := scala213
)
lazy val `scalajs-laminar-spreadsheet` = project
.in(file("."))
.enablePlugins(ScalaJSPlugin)
.enablePlugins(ScalaJSBundlerPlugin)
.settings(
normalizedName := "scalajs-laminar-spreadsheet",
Compile / fastOptJS / scalaJSLinkerConfig ~= { _.withSourceMap(true) },
Compile / fullOptJS / scalaJSLinkerConfig ~= { _.withSourceMap(false) },
publish / skip := true,
scalaJSUseMainModuleInitializer := true,
libraryDependencies ++= Seq(
"com.raquo" %%% "laminar" % "0.13.1",
"com.lihaoyi" %%% "fastparse" % "2.3.3",
"io.github.cquiroz" %%% "scala-java-time" % "2.2.2",
"io.github.cquiroz" %%% "scala-java-time-tzdb" % "2.2.2"
)
)