An open API service indexing awesome lists of open source software.

https://github.com/beeequeue/test-exclude-x


https://github.com/beeequeue/test-exclude-x

Last synced: 4 months ago
JSON representation

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"],
})
```