[Wasm, JS] Update v8 to 10.9.194

It turned out that 10.9.130 is not available for intel based macs (mac64)
This commit is contained in:
Zalim Bashorov
2022-11-10 16:22:34 +01:00
parent 6674e41a3d
commit cbf7497f76
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -64,4 +64,4 @@ versions.protobuf-relocated=2.6.1-1
versions.r8=2.2.64
versions.robolectric=4.0
versions.nodejs=18.12.1
versions.v8=10.9.130
versions.v8=10.9.194
@@ -14,7 +14,7 @@ with(org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootPlugin.apply(rootPr
}
with(org.jetbrains.kotlin.gradle.targets.js.d8.D8RootPlugin.apply(rootProject)) {
version = "10.9.130"
version = "10.9.194"
}
with(org.jetbrains.kotlin.gradle.targets.js.yarn.YarnPlugin.apply(rootProject)) {
@@ -41,4 +41,4 @@ kotlin {
}
}
}
}
}
@@ -27,7 +27,7 @@ open class D8RootExtension(@Transient val rootProject: Project) : ConfigurationP
var downloadBaseUrl by Property("https://storage.googleapis.com/chromium-v8/official/canary/")
// Latest version number could be found here https://storage.googleapis.com/chromium-v8/official/canary/v8-linux64-rel-latest.json
var version by Property("10.9.130")
var version by Property("10.9.194")
var edition by Property("rel") // rel or dbg
val setupTaskProvider: TaskProvider<out Copy>