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 8ba1ea0 commit 9a2247fCopy full SHA for 9a2247f
project/Build.scala
@@ -289,8 +289,11 @@ object Build {
289
Some((packageBin in (`dotty-sbt-bridge`, Compile)).value)
290
},
291
292
- // Use the same name as the non-bootstrapped projects for the artifacts
293
- moduleName ~= { _.stripSuffix("-bootstrapped") },
+ // Use the same name as the non-bootstrapped projects for the artifacts.
+ // Remove the `js` suffix because JS artifacts are published using their special crossVersion.
294
+ // The order of the two `stripSuffix`es is important, so that
295
+ // dotty-library-bootstrappedjs becomes dotty-library.
296
+ moduleName ~= { _.stripSuffix("js").stripSuffix("-bootstrapped") },
297
298
// Enforce that the only Scala 2 classfiles we unpickle come from scala-library
299
/*
0 commit comments