Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/core/file/fileSearch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,7 @@ const createBaseGlobbyOptions = (
absolute: false,
dot: true,
followSymbolicLinks: false,
caseSensitiveMatch: true,
});

export const getIgnoreFilePatterns = async (config: RepomixConfigMerged): Promise<string[]> => {
Expand Down
2 changes: 2 additions & 0 deletions tests/core/file/fileSearch.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ node_modules
absolute: false,
dot: true,
followSymbolicLinks: false,
caseSensitiveMatch: true,
}),
);
});
Expand Down Expand Up @@ -943,6 +944,7 @@ node_modules
absolute: false,
dot: true,
followSymbolicLinks: false,
caseSensitiveMatch: true,
});

// Each call should have either onlyFiles or onlyDirectories, but not both
Expand Down