This plugin sets the output scala.js artifact name
Set the fast, full and test scala.js output artifact name to the same value.
To use, add the following:
// plugins.sbt
resolvers += Resolver.bintrayIvyRepo("aappddeevv", "sbt-plugins")
addSbtPlugin("ttg" % "sbt-unify-scalajs-output-artifact-name" % "<latest version here>")
See the badge above for the latest version.
Then in your build.sbt:
// build.sbt
lazy val subproject = project.in(file("subproject"))
.enablePlugin(ScalaJSPlugin, UnifyScalaJSOutputArtifactName)
.setting(unifiedName := "Scala")
MIT license.