This commit is contained in:
+4
-2
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user