Can this package use glob and globSync from node:fs instead of fast-glob? I’m not entirely sure it does, but I’m working on reducing dependencies…
E.g.:
import { globSync } from 'node:fs';
import { glob } from 'node:fs/promises';
I am using the latest node.js, or a recent version.
Thanks!
John