-
Notifications
You must be signed in to change notification settings - Fork 407
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade to Scala.js 1.0.0-M6. #460
Conversation
This will allow to later upgrade to Scala.js 1.0.0-M6.
Review by @ashawley? Don't hesitate to tell me if the coding style is off. I usually look around in the repo to find out the proper coding style, but I didn't have much time to dedicate to this today. |
libraryDependencies += "org.scala-js" %% "scalajs-test-interface" % scalaJSVersion, | ||
// because Scala.js deprecated TestUtils but we haven't worked around that yet, | ||
// see https://github.com/rickynils/scalacheck/pull/435#issuecomment-430405390 | ||
scalacOptions ~= (_ filterNot (_ == "-Xfatal-warnings")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If there are no deprecation warnings or warnings of any type in Platform.scala, then sure, -Xfatal-warnings
can be re-enabled.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup, there are no warnings of any kind anymore, thanks to this change. :)
LGTM. If the build is green, I have no objections. |
Yeah, the CI is green :D |
Resubmission of #459, with a first commit not to use the deprecated
TestUtils
anymore.