From 2c01508130e257c2441fe18b001559c5ed7e3383 Mon Sep 17 00:00:00 2001 From: Raphael Mobis Tacla Date: Thu, 3 Sep 2026 00:53:46 -0300 Subject: [PATCH] test --- util/ajv.mts | 1 + 1 file changed, 1 insertion(+) diff --git a/util/ajv.mts b/util/ajv.mts index 1f4e845..6ce92c9 100644 --- a/util/ajv.mts +++ b/util/ajv.mts @@ -7,6 +7,7 @@ import { Glob } from 'glob'; const ajv: Ajv = addFormats(new Ajv()); const schemaWalker = new Glob('./schema/*.schema.json', {}); + for await (const file of schemaWalker) { const schema = JSON.parse((await readFile(file)).toString()); ajv.addSchema(schema);