Socket
Socket
Sign inDemoInstall

postcss-icss-keyframes

Package Overview
Dependencies
11
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    postcss-icss-keyframes

PostCSS plugin for css-modules to local-scope keyframes


Version published
Weekly downloads
53K
decreased by-8.25%
Maintainers
2
Install size
1.52 MB
Created
Weekly downloads
 

Readme

Source

postcss-icss-keyframes Build Status

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; }
}

Usage

postcss([ require('postcss-icss-keyframes')(options) ])

See PostCSS docs for examples for your environment.

Options

generateScopeName(keyframesName, filepath, css)

Converts every new animation name in @keyframes defintion to global alias. By default returns __filename__keyframesName.

Importing animation name from another file

Via postcss-modules-values

/* imported.css */
@keyframes foo {}

/* importer.css */
@value foo from './imported.css';
.bar {
  animation-name: foo;
}

Using globally defined keyframes

Animation names are not replaced if css module does not contain @keyframes or @value defintions with the same name.

.foo {
  animation-name: fade-in;
}

Messages

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
}

License

MIT © Bogdan Chadkin

FAQs

Last updated on 14 Jun 2017

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc