Move package org.jetbrains.kotlin.incremental.js to 'js.config'

This allows to replace dependency on 'js.frontend' with 'js.config', in
'kotlin-build-common' and 'daemon-common'. Also simplify some other
dependencies.
This commit is contained in:
Alexander Udalov
2020-03-15 13:02:31 +01:00
committed by Alexander Udalov
parent 4dcd0d1cb6
commit fe5104b865
7 changed files with 13 additions and 27 deletions
+1 -2
View File
@@ -1,4 +1,3 @@
description = "Kotlin Build Common"
plugins {
@@ -12,7 +11,7 @@ dependencies {
compileOnly(project(":compiler:cli-common"))
compileOnly(project(":compiler:frontend.java"))
compileOnly(project(":js:js.serializer"))
compileOnly(project(":js:js.frontend"))
compileOnly(project(":js:js.config"))
compileOnly(project(":kotlin-util-klib-metadata"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) { includeJars("asm-all", "trove4j", "util", rootProject = rootProject) }