1
0

chore: Archive v1 and v2
Remote Deploy / deploy (push) Successful in 1m31s

This commit is contained in:
2026-05-06 17:23:38 +02:00
parent 95766c62a0
commit 939633b675
5 changed files with 93 additions and 9 deletions
+4 -2
View File
@@ -14,14 +14,16 @@
import ExcelJS from "exceljs"
import parseV1V2 from "./parse/v1_v2.js";
//import parseV1V2 from "./parse/v1_v2.js";
import parseV3 from "./parse/v3.js";
import generateArchivedV1_V2 from "./parse/archived/v1_v2.js";
export default async function parseThisShit(downloadedFilePath: string) {
const workbook = new ExcelJS.Workbook();
await workbook.xlsx.readFile(downloadedFilePath);
await parseV1V2(workbook);
//await parseV1V2(workbook);
await generateArchivedV1_V2();
await parseV3(workbook, downloadedFilePath);
}