Convert js modules to intellij plugin

This commit is contained in:
Ilya Chernikov
2017-11-02 14:18:21 +01:00
committed by Vyacheslav Gerasimov
parent 74411d9b9c
commit 8266777bd5
7 changed files with 71 additions and 7 deletions
+10 -1
View File
@@ -1,10 +1,19 @@
apply { plugin("kotlin") }
configureIntellijPlugin {
setExtraDependencies("intellij-core")
}
dependencies {
compile(project(":compiler:util"))
compile(project(":js:js.ast"))
compile(ideaSdkCoreDeps("intellij-core"))
}
afterEvaluate {
dependencies {
compile(intellijCoreJar())
}
}
sourceSets {