From 4f25b1a727e84ca2e4a8a97c8eb10a8dd4f9d79c Mon Sep 17 00:00:00 2001 From: Aileen Booker Date: Tue, 16 Jun 2026 13:19:10 +0700 Subject: [PATCH] Fixed theme zip excluding agent docs The broad theme zip task could include the agent guidance files added to the theme root. Added explicit exclusions for AGENTS.md and CLAUDE.md so generated theme archives stay limited to runtime theme content. --- gulpfile.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index b22505f6..ee9ac601 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -81,6 +81,8 @@ function zipper(done) { '!dist', '!dist/**', '!yarn-error.log', '!yarn.lock', + '!AGENTS.md', + '!CLAUDE.md', '!gulpfile.js' ]), zip(filename),