https://github.com/beeequeue/test-exclude-x
https://github.com/beeequeue/test-exclude-x
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/beeequeue/test-exclude-x
- Owner: beeequeue
- License: mit
- Created: 2025-05-09T13:14:00.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-09-26T16:12:09.000Z (4 months ago)
- Last Synced: 2025-09-26T18:15:06.343Z (4 months ago)
- Language: JavaScript
- Size: 90.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# test-exclude-x
## Goal
- Re-implement `test-exclude` using tinyglobby and picomatch.
- Do not support silly ideas like exclusion negation becomes inclusion.
- Pass relevant tests from
- test-exclude
- c8
## Differences to `test-exclude`
- Exclude negation is not supported
```ts
// Matches file1.js, file2.json
new TextExcluder({
exclude: ["*.js", "!file1.js", "!file2.json"],
})
```