-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathbuild.sbt
37 lines (31 loc) · 793 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
26
27
28
29
30
31
32
33
34
35
36
37
inThisBuild(
List(
organization := "com.vmunier",
homepage := Some(url("https://github.com/vmunier/sbt-web-scalajs")),
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
Developer(
"vmunier",
"Vincent Munier",
"",
url("https://github.com/vmunier")
)
),
dynverSeparator := "-"
)
)
enablePlugins(SbtPlugin)
name := "sbt-web-scalajs"
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0")
addSbtPlugin("com.github.sbt" % "sbt-web" % "1.5.8")
scalacOptions ++= Seq(
"-deprecation",
"-encoding",
"utf8",
"-feature",
"-unchecked",
"-Xlint"
)
scalafmtOnCompile := true
scriptedLaunchOpts += s"-Dplugin.version=${version.value}"
scriptedBufferLog := false