micromatch / glob-fs

file globbing for node.js. speedy and powerful alternative to node-glob. This library is experimental and does not work on windows!
http://jonschlinkert.github.io/glob-fs
MIT License
55 stars 17 forks source link

Replace micromatch github dependency #23

Open ghost opened 6 years ago

ghost commented 6 years ago

Could you please replace the micromatch github- by a npm-dependency? This leads to trouble by firewall restrictions or deployments through inhouse npm caches. Thx!

jonschlinkert commented 6 years ago

want to do a pr?

henninga commented 6 years ago

I could do a pr but all of the tests fails on my machine right after npm install

marlonmarcello commented 3 years ago

@jonschlinkert I have the same issue as @henninga This breaks CI/CD on Amplify and others.

jonschlinkert commented 3 years ago

yes, sure. want to do a PR? sorry for the lack of activity, I'll be spending a lot more time on GitHub going forward.

thanks!

marlonmarcello commented 3 years ago

All good @jonschlinkert ! Appreciate everything that you've done. I can't do a PR for the same reason that @henninga can't. I get a bunch of test fails.

jonschlinkert commented 3 years ago

I can't do a PR for the same reason that @henninga can't. I get a bunch of test fails.

Well... lol someone will need to get those tests passing. I'd appreciate a PR from someone, but I can do it when I get a chance.

rbitting commented 2 years ago

Any update on this? I'm encountering the same issue. FWIW it doesn't seem like the unit tests pass with the current micromatch github package either 😅

Edit: Workaround until this is fixed is to just add a resolution for micromatch in the package.json. Example:

"resolutions": {
    "micromatch": "^4.0.2"
}