Remove jsIrDist (kotlin.stdlib.js.ir.dist) flag and the logic it enables

It is no longer needed since JS IR is published in JS artifacts,
and there's no longer separate "-js-ir" artifacts.

Changes in BuildProperties.kt will take effect after the next
kotlin-build-gradle-plugin publishing.
This commit is contained in:
Ilya Gorbunov
2020-01-21 03:37:41 +03:00
parent 5f0e3018db
commit 61b3f447b1
2 changed files with 0 additions and 4 deletions
@@ -81,8 +81,6 @@ class KotlinBuildProperties(
val proguard: Boolean get() = postProcessing && getBoolean("kotlin.build.proguard", isTeamcityBuild)
val jsIrDist: Boolean get() = getBoolean("kotlin.stdlib.js.ir.dist")
val jarCompression: Boolean get() = getBoolean("kotlin.build.jar.compression", isTeamcityBuild)
val buildCacheUrl: String? = get("kotlin.build.cache.url") as String?
-2
View File
@@ -88,7 +88,6 @@ val distLibraryProjects = listOfNotNull(
":kotlin-scripting-jvm",
":kotlin-scripting-js",
":js:js.engines",
":kotlin-stdlib-js-ir".takeIf { kotlinBuildProperties.jsIrDist },
":kotlin-source-sections-compiler-plugin",
":kotlin-test:kotlin-test-junit",
":kotlin-test:kotlin-test-junit5",
@@ -110,7 +109,6 @@ val distCompilerPluginProjects = listOf(
val distSourcesProjects = listOfNotNull(
":kotlin-annotations-jvm",
":kotlin-script-runtime",
":kotlin-stdlib-js-ir".takeIf { kotlinBuildProperties.jsIrDist },
":kotlin-test:kotlin-test-js".takeIf { !kotlinBuildProperties.isInJpsBuildIdeaSync },
":kotlin-test:kotlin-test-junit",
":kotlin-test:kotlin-test-junit5",