Superchupu
Superchupu
currently, directories returned from fdir always include a trailing slash. having the ability to disable this would be nice
Replaces `read-package-up` and `read-pkg` with [`fd-package-json`](https://www.npmjs.com/package/fd-package-json), a lighter alternative, bringing down core's dependency count from [45](https://npmgraph.js.org/[email protected]) to 27 dependencies (a 40% decrease). `read-pkg` only really parsed json by calling `normalize-package-data`,...
The conventional-changelog monorepo contains many subdependencies. It would be nice if the number of dependencies here could be reduced, as it would improve performance and bundle sizes. I'm happy to...

badgen's vs-marketplace badge currently returns pre-releases if they have a higher version than the stable one. it would be nice if there was an option to only show the latest...
`glob` is far from ideal considering its [26](https://npmgraph.js.org/?q=glob%4010.4.5) subdependencies and not that fast speed. This PR replaces its use with [`fdir`](https://www.npmjs.com/package/fdir) (the fastest dir crawler out there) and [`picomatch`](https://www.npmjs.com/package/picomatch). They...
### Description [`tinyglobby`](https://github.com/es-tooling/module-replacements/blob/main/docs/modules/glob.md#tinyglobby) is meant to be a drop-in replacement to `globby` and `fast-glob`, and it only uses two subdependencies - `fdir` and `picomatch`. as [discussed in the discord server](https://discord.com/channels/917386801235247114/918057929670811708/1269353112800591942),...
0.2.7 added symlinks resolution, but by the looks of it it might enter an infinite loop or just be extremely slow due to how node_modules are linked to each other...
~~should be straightforward to add, but it's blocked until thecodrr/fdir#104 gets merged and released~~ fdir's `withSymlinks` is broken if absolute paths are disabled, can't implement until thecodrr/fdir#113 gets fixed
I'm not even sure how to approach the problem, but implementing this means that all of the weird patterns that currently avoid all optimizations would be really optimized along with...