-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
glob 8.x breaks Windows #470
Comments
Confirmed, I got a "No SVGs found in xxx" error on Windows. |
The bug is, that |
I just tested this, and it fixed the issue. |
The same thing is happening to me. Downgrading the version to 1.2.3 helped temporaraly. |
I did the same! this works.. |
For those who want to downgrade glob but are struggling to do so (I definitely was!):
"dependencies": {
"fantasticon": "^2.0.0"
+ },
+ "overrides": {
+ "fantasticon": {
+ "glob": "7.2.0"
+ }
}
(According to npm/cli#4232 (comment) , you need to explicitly uninstall and reinstall fantasticon for the |
Followed same steps but still getting that error :/ |
For now i downgraded it to 1.2.3, and Since I was using global instance, I just installed it globally npm i -g fantasticon@1.2.3 |
For anyone encountering this bug: you can try migrating to |
I was really hoping we could upstream our patches, since they are mostly trivial but improve things nevertheless (comparison). Unfortunately, last time I tried upstreaming the patches, I didn't succeed so I have to keep the fork around for the time being. |
As suggested by tancredi/fantasticon#470 (comment)
もともとの fantasticon がメンテされなくなったので、 tancredi/fantasticon#470 (comment) にある通り引っ越すことになった
this worked to me! thanks |
Do I get this right, that the PR to fix this was not completed yet? So the only way to get this to work is to downgrade to v2? The override of the glob dependency did not work for me... |
2024, still not working |
On Windows, glob 8.x has changed how results are returned and fantasticon 2.0.0 is unusable.
I suggest that you either downgrade glob or normalize backslashes yourself. I personally just don't update glob to 8.x.
The text was updated successfully, but these errors were encountered: