Skip to content

Commit cd4d59f

Browse files
committed
upgrade
1 parent 54d9d57 commit cd4d59f

5 files changed

Lines changed: 34 additions & 31 deletions

File tree

client/.prettierrc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"printWidth": 100,
3+
"singleQuote": true,
4+
"trailingComma": "none",
5+
"bracketSpacing": false,
6+
"overrides": [
7+
{
8+
"files": "*.html",
9+
"options": {
10+
"parser": "angular"
11+
}
12+
}
13+
]
14+
}

client/package.json

Lines changed: 12 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -8,33 +8,19 @@
88
"watch": "ng build --watch --configuration development",
99
"format": "npx prettier --write ."
1010
},
11-
"prettier": {
12-
"printWidth": 100,
13-
"singleQuote": true,
14-
"trailingComma": "none",
15-
"bracketSpacing": false,
16-
"overrides": [
17-
{
18-
"files": "*.html",
19-
"options": {
20-
"parser": "angular"
21-
}
22-
}
23-
]
24-
},
2511
"private": true,
26-
"packageManager": "npm@11.10.1",
12+
"packageManager": "npm@11.11.1",
2713
"dependencies": {
28-
"@angular/common": "21.2.0",
29-
"@angular/compiler": "21.2.0",
30-
"@angular/core": "21.2.0",
31-
"@angular/forms": "21.2.0",
32-
"@angular/platform-browser": "21.2.0",
33-
"@angular/router": "21.2.0",
14+
"@angular/common": "21.2.4",
15+
"@angular/compiler": "21.2.4",
16+
"@angular/core": "21.2.4",
17+
"@angular/forms": "21.2.4",
18+
"@angular/platform-browser": "21.2.4",
19+
"@angular/router": "21.2.4",
3420
"@msgpack/msgpack": "3.1.3",
35-
"cbor-x": "1.6.0",
21+
"cbor-x": "1.6.4",
3622
"echarts": "6.0.0",
37-
"fast-xml-parser": "5.4.1",
23+
"fast-xml-parser": "5.5.5",
3824
"flatbuffers": "25.9.23",
3925
"ngx-echarts": "21.0.0",
4026
"papaparse": "5.5.3",
@@ -44,9 +30,9 @@
4430
"tslib": "2.8.1"
4531
},
4632
"devDependencies": {
47-
"@angular/build": "21.2.0",
48-
"@angular/cli": "21.2.0",
49-
"@angular/compiler-cli": "21.2.0",
33+
"@angular/build": "21.2.2",
34+
"@angular/cli": "21.2.2",
35+
"@angular/compiler-cli": "21.2.4",
5036
"@types/papaparse": "5.5.2",
5137
"prettier": "3.8.1",
5238
"typescript": "5.9.3"

client/tsconfig.app.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
"outDir": "./out-tsc/app",
77
"types": []
88
},
9-
"include": ["src/**/*.ts"],
10-
"exclude": ["src/**/*.spec.ts"]
9+
"include": [
10+
"src/**/*.ts"
11+
],
12+
"exclude": [
13+
]
1114
}

server/.mvn/wrapper/maven-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717
wrapperVersion=3.3.4
1818
distributionType=only-script
19-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.12/apache-maven-3.9.12-bin.zip
19+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.13/apache-maven-3.9.13-bin.zip

server/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2020
<start-class>ch.rasc.dataformat.Application</start-class>
2121
<java.version>25</java.version>
22-
<protobuf-java.version>4.33.2</protobuf-java.version>
22+
<protobuf-java.version>4.34.0</protobuf-java.version>
2323
</properties>
2424
<dependencies>
2525
<dependency>
@@ -75,7 +75,7 @@
7575
<plugin>
7676
<groupId>io.github.ascopes</groupId>
7777
<artifactId>protobuf-maven-plugin</artifactId>
78-
<version>5.0.0</version>
78+
<version>5.0.2</version>
7979
<configuration>
8080
<protoc>${protobuf-java.version}</protoc>
8181
</configuration>

0 commit comments

Comments
 (0)