Files
pnpm/config/matcher/README.md
2024-07-07 00:51:16 +02:00

24 lines
271 B
Markdown

# @pnpm/matcher
> A simple pattern matcher for pnpm
## Install
```
pnpm add @pnpm/matcher
```
## Usage
```ts
import { createMatcher } from '@pnpm/matcher'
const match = createMatcher(['eslint-*'])
match('eslint-plugin-foo')
//> true
```
## License
[MIT](LICENSE)