File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1313
1414env :
1515 - ADOPTOPENJDK=8 SCALAJS_VERSION= CACHE_WORKAROUND=see-PR-335
16- - ADOPTOPENJDK=8 SCALAJS_VERSION=1.5.1 CACHE_WORKAROUND=see-PR-335
16+ - ADOPTOPENJDK=8 SCALAJS_VERSION=1.6.0 CACHE_WORKAROUND=see-PR-335
1717 - ADOPTOPENJDK=11 SCALAJS_VERSION= CACHE_WORKAROUND=see-PR-335
1818
1919matrix :
Original file line number Diff line number Diff line change @@ -3,7 +3,9 @@ lazy val root = project.in(file("."))
33 .settings(
44 publish / skip := true ,
55 ThisBuild / versionScheme := Some (" early-semver" ),
6- ThisBuild / versionPolicyIntention := Compatibility .BinaryAndSourceCompatible
6+ ThisBuild / versionPolicyIntention := Compatibility .BinaryCompatible ,
7+ // because it doesn't declare it itself
8+ ThisBuild / versionPolicyDependencySchemes += " org.scala-js" %% " scalajs-library" % " semver-spec"
79 )
810
911lazy val parserCombinators = crossProject(JVMPlatform , JSPlatform , NativePlatform )
Original file line number Diff line number Diff line change 11val scalaJSVersion =
2- Option (System .getenv(" SCALAJS_VERSION" )).filter(_.nonEmpty).getOrElse(" 1.5.1 " )
2+ Option (System .getenv(" SCALAJS_VERSION" )).filter(_.nonEmpty).getOrElse(" 1.6.0 " )
33
44val scalaNativeVersion =
55 Option (System .getenv(" SCALANATIVE_VERSION" )).filter(_.nonEmpty).getOrElse(" 0.4.0" )
You can’t perform that action at this time.
0 commit comments