source: frontend/node_modules/tinyglobby/README.md

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 932 bytes
Line 
1# tinyglobby
2
3[![npm version](https://img.shields.io/npm/v/tinyglobby.svg?maxAge=3600)](https://npmjs.com/package/tinyglobby)
4[![monthly downloads](https://img.shields.io/npm/dm/tinyglobby.svg?maxAge=3600)](https://npmjs.com/package/tinyglobby)
5
6A fast and minimal alternative to globby and fast-glob, meant to behave the same way.
7
8Both globby and fast-glob present some behavior no other globbing lib has,
9which makes it hard to manually replace with something smaller and better.
10
11This library uses only two subdependencies, compared to `globby`'s [23](https://npmgraph.js.org/?q=globby@16.2.0)
12and `fast-glob`'s [17](https://npmgraph.js.org/?q=fast-glob@3.3.3).
13
14## Usage
15
16```js
17import { glob, globSync } from 'tinyglobby';
18
19await glob(['files/*.ts', '!**/*.d.ts'], { cwd: 'src' });
20globSync('src/**/*.ts', { ignore: '**/*.d.ts' });
21```
22
23## Documentation
24
25Visit https://superchupu.dev/tinyglobby to read the full documentation.
Note: See TracBrowser for help on using the repository browser.