Fix typo in kotlinc-js help

File separator is '/', path separator is ':' or ';'
This commit is contained in:
Alexander Udalov
2017-05-15 18:03:25 +03:00
parent 18a211cb84
commit 9b85fed3c4
2 changed files with 3 additions and 2 deletions
@@ -35,7 +35,8 @@ public class K2JSCompilerArguments extends CommonCompilerArguments {
@Argument(
value = "-libraries",
valueDescription = "<path>",
description = "Paths to Kotlin libraries with .meta.js and .kjsm files, separated by system file separator")
description = "Paths to Kotlin libraries with .meta.js and .kjsm files, separated by system path separator"
)
public String libraries;
@GradleOption(DefaultValues.BooleanFalseDefault.class)
+1 -1
View File
@@ -2,7 +2,7 @@ Usage: kotlinc-js <options> <source files>
where possible options include:
-output <path> Output file path
-no-stdlib Don't use bundled Kotlin stdlib
-libraries <path> Paths to Kotlin libraries with .meta.js and .kjsm files, separated by system file separator
-libraries <path> Paths to Kotlin libraries with .meta.js and .kjsm files, separated by system path separator
-source-map Generate source map
-meta-info Generate .meta.js and .kjsm files with metadata. Use to create a library
-target { v5 } Generate JS files for specific ECMA version