Skip to content

Commit 884cbad

Browse files
committed
Relax version policy to allow Scala.js 1.6 upgrade
1 parent ccbf3cb commit 884cbad

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: build.sbt

+3-1
Original file line numberDiff line numberDiff 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

911
lazy val parserCombinators = crossProject(JVMPlatform, JSPlatform, NativePlatform)

0 commit comments

Comments
 (0)