Skip to content

Commit bc7018c

Browse files
fix: correct gitignore pattern for modules directory
Use leading slash to only ignore /modules in root directory, preventing test files in tests/unit/modules/ from being ignored.
1 parent c5ba952 commit bc7018c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ Temporary Items
5555
.Trash-*
5656

5757
# Ignore all modules except the default modules.
58-
modules/*
59-
!modules/default
58+
/modules/*
59+
!/modules/default
6060

6161
# Ignore changes to the custom css files but keep the sample and main.
6262
/css/*

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ planned for 2026-01-01
3737
- [core] refactor: replace `XMLHttpRequest` with `fetch` in `translator.js` (#3950)
3838
- [tests] migrate e2e tests to Playwright (#3950)
3939
- [calendar] refactor: migrate CalendarFetcher to ES6 class and improve error handling (#3958)
40-
- [gitignore] cleanup/simplify .gitignore (#3952, #3954, #3968)
40+
- [gitignore] cleanup/simplify .gitignore (#3952, #3954, #3968, #3969)
4141
- refactor(compliments): optimize `loadComplimentFile` method (#3969)
4242

4343
### Fixed

0 commit comments

Comments
 (0)