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
+13
View File
@@ -0,0 +1,13 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
api(project(":compiler:frontend.common"))
}
sourceSets {
"main" { projectDefault() }
"test" {}
}