Package that adds `@keyframes` from mimic.css.
npm install postcss-mimic.css-dataAutogenerated data for postcss-animations plugin.
Parsed all @keyframes from magic.css.
``bash`
yarn add -D postcss-mimic.css-data postcss-animationsor npm i -D postcss-mimic.css-data postcss-animations
`js
const postcss = require("postcss");
const postcssAnimations = require("postcss-animations");
(async () => {
const CSS = .my-tearDrop { animation-name: tearDrop; };
const PLUGINS = [
postcssAnimations({
data: [require("postcss-mimic.css-data")],
checkDuplications: true,
disableCheckCssVariables: true
})
];
try {
const { css, messages } = await postcss(PLUGINS).process(
CSS /, {from,to}/
);
messages.map(msg => console.log(msg.toString()));
console.log(css);
/*
.my-tearDrop { animation-name: tearDrop; }
@keyframes tearDrop { }
*/
} catch (e) {
console.error(e);
}
})();
`
*  postcss-animation.css-data
*  postcss-magic.css-data
*  postcss-tuesday.css-data
`bash``
git clone https://github.com/retyui/postcss-mimic.css-data
cd postcss-mimic.css-data
yarn
yarn build