Extract module 'js.config' out of 'js.frontend'

This allows to get rid of dependency cli.common -> js.frontend.
This commit is contained in:
Alexander Udalov
2020-03-14 23:32:56 +01:00
committed by Alexander Udalov
parent 15d2a06132
commit 143aef938b
8 changed files with 19 additions and 5 deletions
+1 -2
View File
@@ -1,4 +1,3 @@
plugins {
kotlin("jvm")
id("jps-compatible")
@@ -10,6 +9,7 @@ dependencies {
compile(project(":js:js.ast"))
compile(project(":js:js.parser"))
compile(project(":js:js.serializer"))
compile(project(":js:js.config"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) { includeJars("guava", rootProject = rootProject) }
}
@@ -18,4 +18,3 @@ sourceSets {
"main" { projectDefault() }
"test" {}
}