Skip to content

Commit b68c90f

Browse files
authored
Update deps (openapi-ts#1964)
1 parent bd03a29 commit b68c90f

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.9.2/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
33
"extends": ["../../biome.json"],
44
"files": {
55
"include": ["./bin/", "./src/", "./test/"],

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"typescript": "^5.x"
6161
},
6262
"dependencies": {
63-
"@redocly/openapi-core": "^1.25.3",
63+
"@redocly/openapi-core": "^1.25.9",
6464
"ansi-colors": "^4.1.3",
6565
"change-case": "^5.4.4",
6666
"parse-json": "^8.1.0",
@@ -75,7 +75,7 @@
7575
"esbuild": "^0.20.2",
7676
"execa": "^8.0.1",
7777
"strip-ansi": "^7.1.0",
78-
"typescript": "^5.6.2",
79-
"vite-node": "^2.1.1"
78+
"typescript": "^5.6.3",
79+
"vite-node": "^2.1.3"
8080
}
8181
}

test/lib/ts.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ describe("tsEnum", () => {
100100
});
101101

102102
test("name from path", () => {
103-
expect(astToString(tsEnum("#/paths/url/get/parameters/query/status", ["active", "inactive"])).trim()).toBe(`enum PathsUrlGetParametersQueryStatus {
103+
expect(
104+
astToString(tsEnum("#/paths/url/get/parameters/query/status", ["active", "inactive"])).trim(),
105+
).toBe(`enum PathsUrlGetParametersQueryStatus {
104106
active = "active",
105107
inactive = "inactive"
106108
}`);

0 commit comments

Comments
 (0)