Skip to content

Releases: SuperchupuDev/tinyglobby

0.2.0

24 Jul 14:06
a86af9d
Compare
Choose a tag to compare

BREAKING CHANGES

The library no longer sets dot to true internally by default. It now defaults it to false, just like globby and fast-glob.

You can configure this by using the new dot option.

Added

  • Support for specifying the patterns option as the first argument to better approach a drop-in globby replacement
await glob(['src/*.ts'], { ignore: ['_secret'] });

// you can still specify it in the options object
await glob({ patterns: ['src/*.ts'], ignore: ['_secret'] });
  • Support for non-absolute paths in cwd
  • dot option
  • deep option
  • onlyFiles option

0.1.2

22 Jul 21:50
c504a46
Compare
Choose a tag to compare
  • add onlyDirectories option

0.1.1

22 Jul 19:21
69fcfe8
Compare
Choose a tag to compare
  • add ignore option
  • add expandDirectories option

0.1.0

22 Jul 18:19
75e17ed
Compare
Choose a tag to compare

initial release