We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bcd3e4 commit dbdb924Copy full SHA for dbdb924
.travis.yml
@@ -13,3 +13,6 @@ scala:
13
- 2.13.0-M1
14
jdk:
15
- oraclejdk8
16
+env:
17
+ - SCALAJS_VERSION=0.6.18
18
+ - SCALAJS_VERSION=1.0.0-M1
project/build.sbt
@@ -1,3 +1,6 @@
1
-addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.18")
+val scalaJSVersion =
2
+ Option(System.getenv("SCALAJS_VERSION")).getOrElse("0.6.18")
3
+
4
+addSbtPlugin("org.scala-js" % "sbt-scalajs" % scalaJSVersion)
5
6
addSbtPlugin("org.scalastyle" % "scalastyle-sbt-plugin" % "0.8.0")
0 commit comments