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 585b943 commit 8e244d3Copy full SHA for 8e244d3
project/Build.scala
@@ -54,6 +54,14 @@ abstract class DottyJSPlugin(settings: Seq[Setting[_]]) extends AutoPlugin {
54
_.filter(!_.name.startsWith("scala3-library_sjs1"))
55
},
56
57
+ /* #11709 Remove the dependency on scala3-library that ScalaJSPlugin adds.
58
+ * Instead, in this build, we use `.dependsOn` relationships to depend on
59
+ * the appropriate, locally-defined, scala3-library-bootstrappedJS.
60
+ */
61
+ libraryDependencies ~= {
62
+ _.filter(!_.name.startsWith("scala3-library_sjs1"))
63
+ },
64
+
65
// Replace the JVM JUnit dependency by the Scala.js one
66
libraryDependencies ~= {
67
_.filter(!_.name.startsWith("junit-interface"))
0 commit comments