From 4d089e1f5890059216e0dd8899f0740a44ab1c22 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sun, 30 Mar 2025 00:56:01 -0600 Subject: [PATCH] refactor: remove unused blueprints path variable - Deleted the blueprints path variable from script.js as it is no longer needed after recent changes to the template file format. --- app/script.js | 1 - 1 file changed, 1 deletion(-) diff --git a/app/script.js b/app/script.js index c60af3b..87ed39b 100644 --- a/app/script.js +++ b/app/script.js @@ -28,6 +28,5 @@ function processDirectory(dirPath) { }); } -// Ruta al directorio blueprints relativa al script const blueprintsPath = path.join(__dirname, "..", "blueprints"); processDirectory(blueprintsPath);