Update to Angular 14

This commit is contained in:
2026-03-23 20:46:24 +01:00
parent 1dea5953f6
commit f23e34dd09
33 changed files with 2483 additions and 2977 deletions
+1 -1
View File
@@ -173,7 +173,7 @@ export function saveCanvas(filePath: string, canvas: HTMLCanvasElement) {
try {
fs.mkdirSync(path.dirname(filePath), { recursive: true });
} catch (e) {
if (e.code !== 'EEXIST') throw e;
if ((e as NodeJS.ErrnoException).code !== 'EEXIST') throw e;
}
fs.writeFileSync(filePath, canvas.toBuffer());