File tree 2 files changed +3
-1
lines changed
sbt-test/scala2-compat/erasure-scalajs
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -1708,6 +1708,8 @@ object Build {
1708
1708
" -Dplugin.version=" + version.value,
1709
1709
" -Dplugin.scalaVersion=" + dottyVersion,
1710
1710
" -Dplugin.scala2Version=" + stdlibVersion(Bootstrapped ),
1711
+ // The last version of Scala 2 that's cross-published for Scala.js 1.12 (version used by LTS)
1712
+ " -Dplugin.scala2ForJSVersion=2.13.13" ,
1711
1713
" -Dplugin.scalaJSVersion=" + scalaJSVersion,
1712
1714
" -Dsbt.boot.directory=" + ((ThisBuild / baseDirectory).value / " .sbt-scripted" ).getAbsolutePath // Workaround sbt/sbt#3469
1713
1715
),
Original file line number Diff line number Diff line change 1
1
lazy val scala2Lib = project.in(file(" scala2Lib" ))
2
2
.enablePlugins(ScalaJSPlugin )
3
3
.settings(
4
- scalaVersion := sys.props(" plugin.scala2Version " )
4
+ scalaVersion := sys.props(" plugin.scala2ForJSVersion " )
5
5
)
6
6
7
7
lazy val dottyApp = project.in(file(" dottyApp" ))
You can’t perform that action at this time.
0 commit comments