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:
@@ -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']
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user