1
0

refactor: Some minor refinements
Remote Deploy / deploy (push) Successful in 1m28s

This commit is contained in:
2026-06-05 18:24:54 +02:00
parent e94c43ca6e
commit 8fe2bd3bf2
7 changed files with 46 additions and 296 deletions
+1 -6
View File
@@ -1,5 +1,3 @@
import fs from "fs/promises"
const CLASSES: string[] = [
"A1a", "A1b", "A1c", "C1a", "C1b", "C1c", "A2", "C2a", "C2b", "C2c", "E2", "C3a", "C3b", "C3c", "E3"
];
@@ -73,8 +71,5 @@ export default async function generateArchivedV1_V2() {
data.schedule.push(d);
}
await Promise.all([
fs.writeFile("volume/db/v1.json", JSON.stringify(data, null, 2)),
fs.writeFile("volume/db/v2.json", JSON.stringify(data, null, 2)),
]);
return data;
}