[JS] Fix JPS artifacts cordinates

This commit is contained in:
Ilya Goncharov
2023-09-20 13:43:04 +02:00
committed by Space Team
parent 1cde8c3624
commit a79324037d
9 changed files with 18 additions and 22 deletions
@@ -154,7 +154,7 @@ abstract class AbstractJsLookupTrackerTest : AbstractLookupTrackerTest() {
}
protected open val jsStdlibFile: File
get() = PathUtil.kotlinPathsForDistDirectoryForTests.jsStdLibJarPath
get() = PathUtil.kotlinPathsForDistDirectoryForTests.jsStdLibKlibPath
protected open fun configureAdditionalArgs(args: K2JSCompilerArguments) {
args.outputFile = File(outDir, "out.js").canonicalPath
@@ -41,11 +41,11 @@ enum class KotlinJpsLibrary(val id: String, roots: () -> Array<File>) {
JsStdLib(
"KotlinJavaScript",
{ arrayOf(PathUtil.kotlinPathsForDistDirectoryForTests.jsStdLibJarPath) }
{ arrayOf(PathUtil.kotlinPathsForDistDirectoryForTests.jsStdLibKlibPath) }
),
JsTest(
"KotlinJavaScriptTest",
{ arrayOf(PathUtil.kotlinPathsForDistDirectoryForTests.jsKotlinTestJarPath) }
{ arrayOf(PathUtil.kotlinPathsForDistDirectoryForTests.jsKotlinTestKlibPath) }
),
Lombok(
"lombok",