File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -2820,6 +2820,7 @@ object Build {
2820
2820
++ (dir / " js/src/test/scala" ** ((" *.scala" : FileFilter )
2821
2821
-- " StackTraceTest.scala" // would require `npm install source-map-support`
2822
2822
-- " UnionTypeTest.scala" // requires the Scala 2 macro defined in Typechecking*.scala
2823
+ -- " LinkTimeIfTest.scala" // TODO implement support for linkTimeIf
2823
2824
)).get
2824
2825
2825
2826
++ (dir / " js/src/test/require-2.12" ** " *.scala" ).get
Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ import scala.jdk.CollectionConverters.*
6
6
import java .nio .file .Files
7
7
import xsbti .VirtualFileRef
8
8
import sbt .internal .inc .Stamper
9
+ import org .scalajs .sbtplugin .ScalaJSPlugin .autoImport .scalaJSVersion
9
10
10
11
object ScalaLibraryPlugin extends AutoPlugin {
11
12
12
13
override def trigger = noTrigger
13
14
14
- private val scala2Version = " 2.13.16"
15
- private val scalaJSVersion = " 1.19.0"
15
+ private val scala2Version = " 2.13.16"
16
16
17
17
val fetchScala2ClassFiles = taskKey[(Set [File ], File )](" Fetch the files to use that were compiled with Scala 2" )
18
18
val fetchScala2SJSIR = taskKey[(Set [File ], File )](" Fetch the .sjsir to use from Scala 2" )
Original file line number Diff line number Diff line change 6
6
libraryDependencySchemes +=
7
7
" org.scala-lang.modules" %% " scala-xml" % VersionScheme .Always
8
8
9
- addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.19.0 " )
9
+ addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.20.1 " )
10
10
11
11
addSbtPlugin(" com.github.sbt" % " sbt-pgp" % " 2.2.1" )
12
12
You can’t perform that action at this time.
0 commit comments