Skip to content

Commit 588df79

Browse files
committed
Dependency upgrades
1 parent 85a5ce2 commit 588df79

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ buildNumber.properties
8484
## Plugin-specific files:
8585

8686
# IntelliJ
87-
/out/
87+
out/
8888

8989
# mpeltonen/sbt-idea plugin
9090
.idea_modules/
@@ -117,6 +117,7 @@ hs_err_pid*
117117
.cache
118118
.history
119119
.lib/
120+
.bsp/
120121
dist/*
121122
target/
122123
lib_managed/

build.sbt

+8-9
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ inThisBuild(Seq(
77
))
88

99
val commonSettings = Seq(
10-
scalaVersion := "2.13.1",
11-
crossScalaVersions := Seq("2.12.11", "2.13.1"),
10+
scalaVersion := "2.13.6",
11+
crossScalaVersions := Seq("2.13.6", "2.12.14"),
1212
scalacOptions ++= Seq(
1313
"-feature",
1414
"-deprecation",
@@ -19,15 +19,14 @@ val commonSettings = Seq(
1919
"-language:postfixOps",
2020
"-language:experimental.macros",
2121
"-Xfatal-warnings",
22-
"-Xlint:_",
23-
"-Ywarn-unused:_,-explicits,-implicits",
24-
"-Ybackend-parallelism", "4",
22+
"-Xlint:_,-missing-interpolator,-unused",
23+
"-Yrangepos",
24+
"-Ybackend-parallelism", "8",
2525
"-Ycache-plugin-class-loader:last-modified",
2626
"-Ycache-macro-class-loader:last-modified",
2727
),
2828
autoAPIMappings := true,
2929
publishMavenStyle := true,
30-
publishArtifact in Test := false,
3130
pomIncludeRepository := { _ => false },
3231

3332
publishTo := sonatypePublishToBundle.value,
@@ -80,9 +79,9 @@ lazy val root = project.in(file("."))
8079
commonJSSettings,
8180

8281
libraryDependencies ++= Seq(
83-
"org.scala-js" %%% "scalajs-dom" % "0.9.8",
84-
"org.scalatest" %%% "scalatest" % "3.1.1" % Test,
85-
"com.lihaoyi" %%% "scalatags" % "0.8.6" % Test
82+
"org.scala-js" %%% "scalajs-dom" % "1.2.0",
83+
"org.scalatest" %%% "scalatest" % "3.2.9" % Test,
84+
"com.lihaoyi" %%% "scalatags" % "0.9.4" % Test
8685
),
8786

8887
Compile / npmDependencies += "jquery" -> "3.4.1",

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# suppress inspection "UnusedProperty"
2-
sbt.version=1.3.9
2+
sbt.version=1.5.5

project/plugins.sbt

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
logLevel := Level.Warn
22

3-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.0.1")
4-
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.17.0")
5-
addSbtPlugin("org.scala-js" % "sbt-jsdependencies" % "1.0.0")
3+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.7.0")
4+
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0")
5+
addSbtPlugin("org.scala-js" % "sbt-jsdependencies" % "1.0.2")
66

77
// Deployment configuration
8-
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.1")
9-
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.8.1")
8+
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
9+
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.10")

0 commit comments

Comments
 (0)