From 9bb0f58cadb9eec2946883336e2aaf19f0d79a68 Mon Sep 17 00:00:00 2001 From: /home/neo <158327205+neoapps-dev@users.noreply.github.com> Date: Thu, 23 Apr 2026 14:31:48 +0300 Subject: [PATCH] fix --- scripts/registry.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/registry.js b/scripts/registry.js index 1d19a9f..3971af8 100644 --- a/scripts/registry.js +++ b/scripts/registry.js @@ -4,7 +4,7 @@ import { parse } from "jsonc-parser"; const OUTPUT_FILE = "./registry.json"; const VALID_CATEGORIES = ["Skin", "Texture", "World", "Mod", "DLC"]; const REQUIRED_FIELDS = ["id", "name", "author", "description", "extended_description", "category", "thumbnail", "zips", "version"]; -const IGNORED_DIRS = [".git", ".github", "scripts"]; +const IGNORED_DIRS = [".git", ".github", "scripts", "node_modules"]; function validateMeta(meta, pkgDir) { const errors = []; for (const field of REQUIRED_FIELDS) {