Skip to content

Commit ae33b1f

Browse files
committed
Upgrade to Scala.js 1.3.0.
1 parent f6c169f commit ae33b1f

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

project/Build.scala

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1029,7 +1029,7 @@ object Build {
10291029
++ (dir / "shared/src/test/require-jdk7" ** "*.scala").get
10301030

10311031
++ (dir / "js/src/test/scala" ** (("*.scala": FileFilter)
1032-
-- "ExportsTest.scala" // JS exports + do not compile because of a var in a structural type
1032+
-- "ExportsTest.scala" // JS exports + IR checking error
10331033
-- "ObjectTest.scala" // compile errors caused by #9588
10341034
-- "StackTraceTest.scala" // would require `npm install source-map-support`
10351035
-- "UnionTypeTest.scala" // requires the Scala 2 macro defined in Typechecking*.scala
@@ -1045,12 +1045,8 @@ object Build {
10451045
// Putting them here instead of above makes sure that we do not regress on compilation+linking.
10461046
Test / testOptions += Tests.Filter { name =>
10471047
!Set[String](
1048-
"org.scalajs.testsuite.compiler.InteroperabilityTest", // 3 tests require JS exports, all other tests pass
1049-
10501048
"org.scalajs.testsuite.jsinterop.AsyncTest", // needs JS exports in PromiseMock.scala
1051-
"org.scalajs.testsuite.jsinterop.DynamicTest", // one test requires JS exports, all other tests pass
10521049
"org.scalajs.testsuite.jsinterop.JSExportStaticTest", // JS exports
1053-
"org.scalajs.testsuite.jsinterop.NonNativeJSTypeTest", // 1 test fails because of a progression for value class fields (needs an update upstream)
10541050

10551051
// Not investigated so far
10561052
"org.scalajs.testsuite.junit.JUnitAbstractClassTestCheck",

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// e.g. addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.1.0")
44

5-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.2.0")
5+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.3.0")
66

77
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.6")
88

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % sys.props("plugin.version"))
2-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.2.0")
2+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.3.0")

0 commit comments

Comments
 (0)