mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 19:09:32 +00:00
Remove compiled scalajs files from final package
Only the js file is necessary, the intermediate sjs files are not needed at runtime.
This commit is contained in:
parent
463c9c2a8b
commit
63dc6fe13d
11
build.sbt
11
build.sbt
@ -556,7 +556,14 @@ val restserver = project
|
|||||||
"-Xmx150M",
|
"-Xmx150M",
|
||||||
"-XX:+UseG1GC"
|
"-XX:+UseG1GC"
|
||||||
),
|
),
|
||||||
Revolver.enableDebugging(port = 5050, suspend = false)
|
Revolver.enableDebugging(port = 5050, suspend = false),
|
||||||
|
Universal / mappings := {
|
||||||
|
val allMappings = (Universal / mappings).value
|
||||||
|
allMappings.filter {
|
||||||
|
//scalajs artifacts are not needed at runtime
|
||||||
|
case (file, name) => !name.contains("_sjs1_")
|
||||||
|
}
|
||||||
|
}
|
||||||
)
|
)
|
||||||
.dependsOn(restapi, joexapi, backend, webapp, ftssolr)
|
.dependsOn(restapi, joexapi, backend, webapp, ftssolr)
|
||||||
|
|
||||||
@ -771,7 +778,7 @@ def packageTools(logger: Logger, dir: File, version: String): Seq[File] = {
|
|||||||
|
|
||||||
addCommandAlias(
|
addCommandAlias(
|
||||||
"make",
|
"make",
|
||||||
";set webapp/elmCompileMode := ElmCompileMode.Production; set webapp/stylesMode := StylesMode.Prod ;root/openapiCodegen ;root/test:compile"
|
";set webapp/elmCompileMode := ElmCompileMode.Production; set webapp/stylesMode := StylesMode.Prod ;root/openapiCodegen ;root/Test/compile"
|
||||||
)
|
)
|
||||||
addCommandAlias("make-zip", ";restserver/universal:packageBin ;joex/universal:packageBin")
|
addCommandAlias("make-zip", ";restserver/universal:packageBin ;joex/universal:packageBin")
|
||||||
addCommandAlias("make-deb", ";restserver/debian:packageBin ;joex/debian:packageBin")
|
addCommandAlias("make-deb", ";restserver/debian:packageBin ;joex/debian:packageBin")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user