File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed
Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,10 @@ lazy val js = project.in(file("js"))
131131 .settings(sharedSettings : _* )
132132 .settings(
133133 scalaJSStage in Global := FastOptStage ,
134- libraryDependencies += " org.scala-js" %% " scalajs-test-interface" % scalaJSVersion
134+ libraryDependencies += " org.scala-js" %% " scalajs-test-interface" % scalaJSVersion,
135+ // because Scala.js deprecated TestUtils but we haven't worked around that yet,
136+ // see https://github.com/rickynils/scalacheck/pull/435#issuecomment-430405390
137+ scalacOptions ~= (_ filterNot (_ == " -Xfatal-warnings" ))
135138 )
136139 .enablePlugins(ScalaJSPlugin )
137140
Original file line number Diff line number Diff line change 1- addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 0.6.22 " )
1+ addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 0.6.25 " )
Original file line number Diff line number Diff line change 1- sbt.version =1.1.1
1+ sbt.version =1.2.3
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.2.0")
33addSbtPlugin(" com.jsuereth" % " sbt-pgp" % " 1.1.1" )
44
55val scalaJSVersion =
6- Option (System .getenv(" SCALAJS_VERSION" )).getOrElse(" 0.6.23 " )
6+ Option (System .getenv(" SCALAJS_VERSION" )).getOrElse(" 0.6.25 " )
77
88addSbtPlugin(" org.scala-js" % " sbt-scalajs" % scalaJSVersion)
99
You can’t perform that action at this time.
0 commit comments