Refactor and fix: clean up dockerfile and format done with fix in types

This commit is contained in:
Sahil 2025-08-13 18:26:17 +05:30
parent 45a0540edf
commit 43524dcdb1
3 changed files with 38 additions and 22 deletions

View file

@ -20,9 +20,8 @@ import { convert as convertPandoc, properties as propertiesPandoc } from "./pand
import { convert as convertPotrace, properties as propertiesPotrace } from "./potrace";
import { convert as convertresvg, properties as propertiesresvg } from "./resvg";
import { convert as convertImage, properties as propertiesImage } from "./vips";
import { convert as convertVtracer, properties as propertiesVtracer } from "./vtracer";
import { convert as convertxelatex, properties as propertiesxelatex } from "./xelatex";
import {convert as convertVtracer, properties as propertiesVtracer} from './vtracer';
// This should probably be reconstructed so that the functions are not imported instead the functions hook into this to make the converters more modular
@ -122,7 +121,7 @@ const properties: Record<
vtracer: {
properties: propertiesVtracer,
converter: convertVtracer,
}
},
};
function chunks<T>(arr: T[], size: number): T[][] {