[Gradle, JS] Add args instead of full override
This commit is contained in:
@@ -31,7 +31,7 @@ tasks {
|
||||
}
|
||||
// Without it several yarns can works incorrectly
|
||||
(this as YarnTask).apply {
|
||||
args = listOf("--network-concurrency", "1", "--mutex", "network")
|
||||
args = args + "--network-concurrency" + "1" + "--mutex" + "network"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ tasks {
|
||||
}
|
||||
// Without it several yarns can works incorrectly
|
||||
(this as YarnTask).apply {
|
||||
args = listOf("--network-concurrency", "1", "--mutex", "network")
|
||||
args = args + "--network-concurrency" + "1" + "--mutex" + "network"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user