Skip to content

Commit c59ae70

Browse files
authored
Merge pull request #345 from cquiroz/scala.js-0.6.18-1.0.0-M1
Added support to build on scala.js 1.0.0-M1
2 parents 961f782 + 3268050 commit c59ae70

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,5 @@ env:
2828
- PLATFORM=jvm SBT_PARALLEL=true WORKERS=4 DEPLOY=false
2929
- PLATFORM=jvm SBT_PARALLEL=false WORKERS=4 DEPLOY=false
3030
- PLATFORM=js SBT_PARALLEL=true WORKERS=1 DEPLOY=true
31+
- PLATFORM=js SBT_PARALLEL=true WORKERS=1 DEPLOY=true SCALAJS_VERSION=1.0.0-M1
3132
sudo: false

project/plugin.sbt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.1.14")
22

33
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
44

5-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.19")
5+
val scalaJSVersion =
6+
Option(System.getenv("SCALAJS_VERSION")).getOrElse("0.6.19")
7+
8+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % scalaJSVersion)
69

710
scalacOptions += "-deprecation"

0 commit comments

Comments
 (0)