Update dependencies

- Bump Gradle to 9.4.1. This fixes the Kotlin Java 24 warnings.
 - Update Typescript to 6.0
This commit is contained in:
Jonathan Coates
2026-04-07 22:10:14 +01:00
parent b04aa8543f
commit 2c7da47019
6 changed files with 446 additions and 339 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ commonsCli = "1.10.0"
jetbrainsAnnotations = "26.0.2-1"
jspecify = "1.0.0"
jzlib = "1.1.3"
kotlin = "2.3.0"
kotlin = "2.3.20"
kotlin-coroutines = "1.10.2"
nightConfig = "3.8.3"
+1 -1
View File
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
+438 -333
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -25,6 +25,6 @@
"rehype-react": "^8.0.0",
"rollup": "^4.0.0",
"tsx": "^4.7.0",
"typescript": "^5.2.2"
"typescript": "^6.0.0"
}
}
+2
View File
@@ -2,6 +2,8 @@
//
// SPDX-License-Identifier: MPL-2.0
declare module "*.css" {}
declare module "*.lua" {
const contents: string;
export default contents;
+3 -3
View File
@@ -1,14 +1,14 @@
{
"compilerOptions": {
"module": "esNext",
"moduleResolution": "node",
"moduleResolution": "bundler",
"target": "es6",
"lib": [
"es2015",
"es2017",
"dom"
],
"newLine": "LF",
"baseUrl": ".",
"types": ["node"],
// Additional compile options
"noEmitOnError": true,
"preserveWatchOutput": true,