Skip to content

Commit 5a23324

Browse files
committed
Update .gitignore for FCHub Memberships plugin
- Removed the exception for the dist directory in the main .gitignore to ensure all necessary files are tracked. - Updated the .gitignore in the fchub-memberships plugin to ignore new untracked files in the assets/dist directory while keeping the .vite directory tracked, clarifying the build process.
1 parent 8bd785f commit 5a23324

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ Thumbs.db
1919

2020
# Local build output
2121
/dist/
22-
!plugins/fchub-memberships/assets/dist/
2322

2423
# Next.js / Fumadocs (web-docs)
2524
.next/

plugins/fchub-memberships/.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ node_modules/
22
vendor/
33
.phpunit.cache/
44
coverage/
5-
assets/dist/
5+
# assets/dist/ is tracked — plugin works without a build step
6+
# only ignore new untracked files, not already-tracked ones
7+
assets/dist/*
8+
!assets/dist/.vite/
69
.DS_Store
710
*.log

0 commit comments

Comments
 (0)