We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c3dccd6 + 6efdefc commit 9c22ce7Copy full SHA for 9c22ce7
project/Build.scala
@@ -38,6 +38,14 @@ object MyScalaJSPlugin extends AutoPlugin {
38
override def projectSettings: Seq[Setting[_]] = Def.settings(
39
commonBootstrappedSettings,
40
41
+ /* #11709 Remove the dependency on scala3-library that ScalaJSPlugin adds.
42
+ * Instead, in this build, we use `.dependsOn` relationships to depend on
43
+ * the appropriate, locally-defined, scala3-library-bootstrappedJS.
44
+ */
45
+ libraryDependencies ~= {
46
+ _.filter(!_.name.startsWith("scala3-library_sjs1"))
47
+ },
48
+
49
// Replace the JVM JUnit dependency by the Scala.js one
50
libraryDependencies ~= {
51
_.filter(!_.name.startsWith("junit-interface"))
0 commit comments