Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
postcss-icss-keyframes
Advanced tools
PostCSS plugin for css-modules to local-scope keyframes.
@keyframes foo {
from { width: 10px; }
to { width: 100px; }
}
/* transforms to */
:export {
foo: __scope__foo
}
@keyframes __scope__foo {
from { width: 10px; }
to { width: 100px; }
}
postcss([ require('postcss-icss-keyframes')(options) ])
See PostCSS docs for examples for your environment.
Converts every new animation name in @keyframes
defintion to global alias.
By default returns __filename__keyframesName
.
/* imported.css */
@keyframes foo {}
/* importer.css */
@value foo from './imported.css';
.bar {
animation-name: foo;
}
Animation names are not replaced if css module does not contain @keyframes
or @value
defintions with the same name.
.foo {
animation-name: fade-in;
}
postcss-icss-keyframes passes result.messages for each defined keyframes
{
plugin: 'postcss-icss-keyframes',
type: 'icss-scoped',
name: string, // local name
value: string // scoped name
}
MIT © Bogdan Chadkin
FAQs
PostCSS plugin for css-modules to local-scope keyframes
We found that postcss-icss-keyframes demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.