Fix typo in kotlinc-js help
File separator is '/', path separator is ':' or ';'
This commit is contained in:
+2
-1
@@ -35,7 +35,8 @@ public class K2JSCompilerArguments extends CommonCompilerArguments {
|
|||||||
@Argument(
|
@Argument(
|
||||||
value = "-libraries",
|
value = "-libraries",
|
||||||
valueDescription = "<path>",
|
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;
|
public String libraries;
|
||||||
|
|
||||||
@GradleOption(DefaultValues.BooleanFalseDefault.class)
|
@GradleOption(DefaultValues.BooleanFalseDefault.class)
|
||||||
|
|||||||
Vendored
+1
-1
@@ -2,7 +2,7 @@ Usage: kotlinc-js <options> <source files>
|
|||||||
where possible options include:
|
where possible options include:
|
||||||
-output <path> Output file path
|
-output <path> Output file path
|
||||||
-no-stdlib Don't use bundled Kotlin stdlib
|
-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
|
-source-map Generate source map
|
||||||
-meta-info Generate .meta.js and .kjsm files with metadata. Use to create a library
|
-meta-info Generate .meta.js and .kjsm files with metadata. Use to create a library
|
||||||
-target { v5 } Generate JS files for specific ECMA version
|
-target { v5 } Generate JS files for specific ECMA version
|
||||||
|
|||||||
Reference in New Issue
Block a user