Fix coreLibsInstall composite task

It was broken after the commit bbdbc2896b,
which included kotlin-stdlib-js-ir project into coreLibs list,
but that project didn't have 'install' task, on which 'coreLibsInstall' depends
This commit is contained in:
Ilya Gorbunov
2019-12-11 06:36:40 +03:00
parent 6792d22c31
commit f0e67f8397
+4
View File
@@ -159,6 +159,10 @@ node {
nodeModulesDir = buildDir
}
task install() {
// dummy task to make coreLibsInstall aggregate task not fail
}
task installMocha(type: NpmTask) {
args = ['install', 'mocha']
}