We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Let's say we have the fallowing files: styles.css
styles.css
.scale-spin { animation: spin 300ms linear infinite forwards,scale 300ms linear infinite alternate; } @keyframes spin { /* ... */ } @keyframes scale { /* ... */ }
index.html
<div class="scale-spin"></div>
purgecss config
new Purgecss({ content: ['index.html'], css: ['styles.css'], keyframes: true // discard unused keyframes })
As of right now, if you run purgecss on these two, the scale keyframe will be removed and only the spin would be kept.
scale
spin
Expected behavior Both the scale and spin keyframes are kept.
Desktop (please complete the following information):
I will make a pull request to fix this issue.
The text was updated successfully, but these errors were encountered:
Fix issue FullHuman#166
6a5cdfd
b7749a9
Merge pull request #167 from ThisNameWasTaken/master
cde0071
Fix issue #166
No branches or pull requests
Describe the bug
Let's say we have the fallowing files:
styles.css
index.html
purgecss config
As of right now, if you run purgecss on these two, the
scale
keyframe will be removed and only thespin
would be kept.Expected behavior
Both the
scale
andspin
keyframes are kept.Desktop (please complete the following information):
I will make a pull request to fix this issue.
The text was updated successfully, but these errors were encountered: