Fixed
This version replaces the glob
dependency with tinyglobby
, which is used by elm-review, and many other popular projects. This has a couple of benefits:
- Restores the Node.js 12 support lost in 0.19.1-revision13.
- Fixes globs that resolve to directories on Windows. Regression since 0.19.1-revision13, due to the
glob
upgrade. The test suite was previously missing coverage for this. tinyglobby
is much smaller thanglob
, reducing the installation size and number of indirect dependencies.
Thanks to Jeroen Engels for making the pull request fixing this, and to @lishaduck for introducing tinyglobby
to elm-review and suggesting elm-test should use it too!