We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbc9eac commit 895b083Copy full SHA for 895b083
project/Build.scala
@@ -46,6 +46,14 @@ abstract class DottyJSPlugin(settings: Seq[Setting[_]]) extends AutoPlugin {
46
_.filter(!_.name.startsWith("scala3-library_sjs1"))
47
},
48
49
+ /* #11709 Remove the dependency on scala3-library that ScalaJSPlugin adds.
50
+ * Instead, in this build, we use `.dependsOn` relationships to depend on
51
+ * the appropriate, locally-defined, scala3-library-bootstrappedJS.
52
+ */
53
+ libraryDependencies ~= {
54
+ _.filter(!_.name.startsWith("scala3-library_sjs1"))
55
+ },
56
+
57
// Replace the JVM JUnit dependency by the Scala.js one
58
libraryDependencies ~= {
59
_.filter(!_.name.startsWith("junit-interface"))
0 commit comments