-
-
Notifications
You must be signed in to change notification settings - Fork 141
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
add favicon only flags #70
Comments
Hi @Truth1984, thanks for the feedback! Looks like you found a nice workaround for this edge case. Currently, generating favicon is coupled with app icon generation, which kinda made sense back then. But now I consider changing --favicon flag to --favicon-only by also decoupling it from the rest of icon generation. |
After a second thought, I think it's better to park this issue for now by updating the FAQ section of the readme. Adding an additional faviconOnly flag will not help with reducing the CLI calls in this scenario and it will add more complexity to the lib by putting a focus on favicon, which shouldn't be the goal of the lib IMHO. We might resurrect it if it gets more attention from the users in the future ✌️Thanks for the help @Truth1984! |
Added guidelines for generating a transparent favicon fix #70
Added guidelines for generating a transparent favicon fix #70
🎉 This issue has been resolved in version 2.1.3 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Here is the situation,
I want to generate a transparent
favicon
, and white background forsplash
andicon
, but there is no such option.when I set
{favicon: true}
, the program automatically generateicon & splash
for meThus here is my workaround, first I generate
favicon
with{ opaque: false, iconOnly: true, favicon: true }
and then overwrite it with{background:"#FFFFFF", favicon:false}
option.I wonder if we can add
faviconOnly
flag.The text was updated successfully, but these errors were encountered: