scalajs-gradle
scalajs-gradle copied to clipboard
A Gradle plugin adding basic functions to support Scala.js
I am using this plugin with my scalajs project with the following build file: ``` // Apply the scala plugin to add support for Scala apply plugin: 'scalajs-plugin' archivesBaseName='frontend' ext{...
-Updates to Gradle 5 -Updates to Scala 2.12.7 -Updates to Scala.js 0.6.26 -Adds version task -Add support for other module than NoModule -Add support for other Scala compiler options
I currently have a project that compiles to jvm and js using the cross build feature https://www.scala-js.org/doc/project/cross-build.html . I'm trying to migrate to gradle but in order to do this...
The plugin is very aggressive about scalaCompileOptions.additionalParameters, since instead of appending to it it simply sets the value without checking if there was anything in it already (in our project...
Any chance you can create a build that depends on scala 2.12.6?
Scalajs has continued to march forward, and frankly I can't even get a lot of useful client-side code to compile anymore under 0.6.15 and earlier versions. I understand there is...
https://github.com/gtache/scalajs-gradle/blob/master/scalajs-plugin/src/main/scala/com/github/gtache/Scalajsld.scala#L60 Please delete it. Besides tasks should figure out when to execute, not the linker.
There is no way to set commonJSModule http://www.scala-js.org/doc/project/module.html
With the SBT plugins it is possible to generate a simple launcher script for the main method, is this available in this plugin? I can't find it.