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:
@@ -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?
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user