gocodebox / gocodebox/lifterlms-cs

exclude-pattern improvements

Open
#5 0 comments 0 reactions 1 assignee Claimed by @thomasplevy View on GitHub
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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.