fix: remove the 'meta' key from the export json

This commit is contained in:
Richard Macias
2025-06-02 09:16:16 -05:00
parent e88fd3e536
commit a227c61b99
2 changed files with 2 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ def minify_json(input_file, output_file):
for app in data["apps"]:
meta = app.get("meta", {})
if not meta.get("excludeFromExport", False):
app.pop("meta", None) # Exclude the 'meta' key from the export json
filtered_apps.append(app)
data["apps"] = filtered_apps