gocodebox / gocodebox/lifterlms-cs
exclude-pattern improvements
- Dominant language
- PHP
- Stars
- 4
- Forks
- 4
- PR merge metrics
- No merged PRs in 30d
Description
**Is your feature request related to a problem? Please describe.**
No.
**Describe the solutions you'd like**
1. Exclude **all** minimized JavaScript files, not just the ones is the normal `assets/js/` directory.
```diff
- assets/js/*.min.js
+ *.min.js
```
1. Only exclude these directories if they are at the top-level path that is being filtered.
```diff
- tests/*
+ ^tests/*
- tmp/*
+ ^tmp/*
- gulpfile.js/*
+ ^gulpfile.js/*
```
1. Limit the pattern to directories with a specific name. `./vendor/` vs. `./prefix-vendor/`
```diff
- vendor/*
+ */vendor/*
- node_modules/*
+ */node_modules/*
```
Contributor guide
Assessment
This issue has not been assessed yet.