[JS IR] Support additional repositories in CLI (cli part)

This commit is contained in:
Roman Artemev
2020-11-24 11:20:26 +03:00
parent cd9e341fa9
commit 2daf0cc11c
3 changed files with 10 additions and 0 deletions
@@ -33,6 +33,13 @@ class K2JSCompilerArguments : CommonCompilerArguments() {
)
var libraries: String? by NullableStringFreezableVar(null)
@Argument(
value = "-Xrepositories",
valueDescription = "<path>",
description = "Paths to additional places where libraries could be found"
)
var repositries: String? by NullableStringFreezableVar(null)
@GradleOption(DefaultValues.BooleanFalseDefault::class)
@Argument(value = "-source-map", description = "Generate source map")
var sourceMap: Boolean by FreezableVar(false)