Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aappddeevv/sbt-unify-scalajs-output-artifact-name
Forces scala.js artifact name to be the same for fast, full and test configurations.
https://github.com/aappddeevv/sbt-unify-scalajs-output-artifact-name
Last synced: 25 days ago
JSON representation
Forces scala.js artifact name to be the same for fast, full and test configurations.
- Host: GitHub
- URL: https://github.com/aappddeevv/sbt-unify-scalajs-output-artifact-name
- Owner: aappddeevv
- Created: 2020-03-07T17:03:54.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-15T12:41:25.000Z (almost 5 years ago)
- Last Synced: 2024-10-15T02:33:53.980Z (3 months ago)
- Language: Scala
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sbt-unify-scalajs-output-artifact-name
This plugin sets the output scala.js artifact name
[ ![Download](https://api.bintray.com/packages/aappddeevv/sbt-plugins/sbt-unify-scalajs-output-artifact-name/images/download.svg?version=0.1.0) ](https://bintray.com/aappddeevv/sbt-plugins/sbt-unify-scalajs-output-artifact-name/0.1.0/link)
## Usage
Set the fast, full and test scala.js output artifact name to the same value.
To use, add the following:
```scala
// plugins.sbt
resolvers += Resolver.bintrayIvyRepo("aappddeevv", "sbt-plugins")addSbtPlugin("ttg" % "sbt-unify-scalajs-output-artifact-name" % "")
```
See the badge above for the latest version.Then in your build.sbt:
```scala
// build.sbtlazy val subproject = project.in(file("subproject"))
.enablePlugin(ScalaJSPlugin, UnifyScalaJSOutputArtifactName)
.setting(unifiedName := "Scala")
```## License
MIT license.