Skip to content

Commit e80784b

Browse files
committed
Dependency updates
1 parent 18c8d7c commit e80784b

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dist: trusty
44
jdk: oraclejdk8
55
scala:
66
- 2.11.12
7-
- 2.12.7
7+
- 2.12.10
88

99
before_script:
1010
- "export DISPLAY=:99.0"

build.sbt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import org.openqa.selenium.chrome.ChromeOptions
1+
22

33
name := "udash-jquery"
44

@@ -8,8 +8,8 @@ inThisBuild(Seq(
88
))
99

1010
val commonSettings = Seq(
11-
scalaVersion := "2.12.7",
12-
crossScalaVersions := Seq("2.11.12", "2.12.7"),
11+
scalaVersion := "2.12.10",
12+
crossScalaVersions := Seq("2.11.12", "2.12.10"),
1313
scalacOptions ++= Seq(
1414
"-feature",
1515
"-deprecation",
@@ -34,7 +34,7 @@ val commonSettings = Seq(
3434
)
3535

3636
val commonJSSettings = Seq(
37-
Compile / emitSourceMaps := true,
37+
//Compile / emitSourceMaps := true,
3838
Test / parallelExecution := false,
3939
Test / scalaJSStage := FastOptStage,
4040
// ScalaJSBundlerPlugin does not work with scalajs-env-selenium:
@@ -55,9 +55,9 @@ lazy val root = project.in(file("."))
5555
commonJSSettings,
5656

5757
libraryDependencies ++= Seq(
58-
"org.scala-js" %%% "scalajs-dom" % "0.9.6",
59-
"org.scalatest" %%% "scalatest" % "3.0.5" % Test,
60-
"com.lihaoyi" %%% "scalatags" % "0.6.7" % Test
58+
"org.scala-js" %%% "scalajs-dom" % "0.9.7",
59+
"org.scalatest" %%% "scalatest" % "3.0.8" % Test,
60+
"com.lihaoyi" %%% "scalatags" % "0.7.0" % Test
6161
),
6262

6363
Compile / npmDependencies += "jquery" -> "3.3.1",

project/build.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
sbt.version = 1.2.6
1+
# suppress inspection "UnusedProperty"
2+
sbt.version=1.3.2

project/plugins.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ logLevel := Level.Warn
22

33
libraryDependencies += "org.scala-js" %% "scalajs-env-selenium" % "0.3.0"
44

5-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.25")
6-
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.14.0")
5+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.29")
6+
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.15.0-0.6")

0 commit comments

Comments
 (0)