If file not found at all, don't attempt to list it
@ -126,7 +126,12 @@ const explode = async function (paths, ignored, { limit, debug }) {
// in case the file comes from `files` or `main`
// and it wasn't specified with `.js` by the user
path = file + '.js';
s = await stat(path);
try {
} catch (e2) {
return null;
}
if (isIgnored(file, ignored)) {