From 8659017da0872333c33320b1d327eb4e32be8b5d Mon Sep 17 00:00:00 2001 From: dyzulk <66510723+dyzulk@users.noreply.github.com> Date: Sun, 18 Jan 2026 17:31:55 +0700 Subject: [PATCH] chore: enable json minification --- scripts/generate_registry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate_registry.php b/scripts/generate_registry.php index 5142cc0..ad53d1f 100644 --- a/scripts/generate_registry.php +++ b/scripts/generate_registry.php @@ -122,7 +122,7 @@ foreach ($repos as $repo) { } // 4. Save to JSON -$json = json_encode($plugins, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES); +$json = json_encode($plugins, JSON_UNESCAPED_SLASHES); file_put_contents($outputFile, $json); echo "Done! Generated " . count($plugins) . " plugins in JSON.\n";