Skip to content

Commit 24b417d

Browse files
committed
Typing fixes
1 parent 5987c08 commit 24b417d

12 files changed

Lines changed: 38 additions & 466 deletions

File tree

apps/api/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"start": "node dist/index.js",
66
"dev": "tsx watch src/index.ts",
77
"build": "tsc",
8+
"typecheck": "tsc --noEmit",
89
"format-and-lint": "biome check .",
910
"format-and-lint:fix": "biome check . --write"
1011
},

apps/ingestion/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"start": "node dist/index.js",
66
"dev": "tsx watch src/index.ts",
77
"build": "tsc",
8+
"typecheck": "tsc --noEmit",
89
"format-and-lint": "biome check .",
910
"format-and-lint:fix": "biome check . --write"
1011
},

apps/updater/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"start": "node dist/index.js",
66
"dev": "tsx watch src/index.ts",
77
"build": "tsc",
8+
"typecheck": "tsc --noEmit",
89
"format-and-lint": "biome check .",
910
"format-and-lint:fix": "biome check . --write"
1011
},

apps/updater/src/airports.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export async function updateAirports(): Promise<void> {
4141
timezone: findTimezone(Number(a.latitude_deg), Number(a.longitude_deg))[0],
4242
}));
4343

44-
await rdsSetMultiple(filteredAirports, "static_airport", (a) => a.id, "airports:static");
44+
await rdsSetMultiple(filteredAirports, "static_airport", (a) => a.id);
4545
await rdsSetSingle("static_airports:all", filteredAirports);
4646
await rdsSetSingle("static_airports:version", MANUAL_VERSION);
4747

apps/web/app/(map)/components/Overlays.css

Lines changed: 0 additions & 233 deletions
This file was deleted.

0 commit comments

Comments
 (0)