From c4887db0eb0fe57173aaa7d62a4b318f44e66435 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Perona?= Date: Mon, 17 Aug 2026 09:05:49 -0400 Subject: [PATCH] Update .gitattributes to exclude non-production files from exports Add export-ignore for newly introduced dev/test files (.wp-env.json, CLAUDE.md, package.json, package-lock.json, phpcs.xml.dist, phpstan.neon.dist, phpstan-baseline.neon) and drop stale bin/vendor entries that no longer exist after the move to src/. Co-Authored-By: Claude Opus 4.8 --- .gitattributes | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.gitattributes b/.gitattributes index 1ecc325..809358d 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,12 +1,20 @@ -bin export-ignore Tests export-ignore -vendor export-ignore .editorconfig export-ignore .gitattributes export-ignore .gitignore export-ignore .github export-ignore +.wp-env.json export-ignore -composer.lock export-ignore +CLAUDE.md export-ignore LICENSE export-ignore README.md export-ignore + +composer.lock export-ignore + +package.json export-ignore +package-lock.json export-ignore + +phpcs.xml.dist export-ignore +phpstan.neon.dist export-ignore +phpstan-baseline.neon export-ignore