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 f917ee8 commit f69b3b1Copy full SHA for f69b3b1
.travis.yml
@@ -11,6 +11,9 @@ scala:
11
- 2.11.11
12
- 2.12.2
13
- 2.13.0-M1
14
+env:
15
+ - SCALAJS_VERSION=0.6.18
16
+ - SCALAJS_VERSION=1.0.0-M1
17
matrix:
18
include:
19
- scala: 2.10.6
project/build.sbt
@@ -1,5 +1,10 @@
1
+
2
+val scalaJSVersion =
3
+ Option(System.getenv("SCALAJS_VERSION")).getOrElse("0.6.18")
4
5
+addSbtPlugin("org.scala-js" % "sbt-scalajs" % scalaJSVersion)
6
7
addSbtPlugin("com.eed3si9n" % "sbt-doge" % "0.1.5")
-addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.18")
8
addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.8.0")
9
addSbtPlugin("org.scala-native" % "sbt-crossproject" % "0.2.0")
10
addSbtPlugin("org.scala-native" % "sbt-scalajs-crossproject" % "0.2.0")
0 commit comments