Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

postcss-easings

postcss46kMIT4.0.0

PostCSS plugin to replace easing names to cubic-bezier()

postcss, css, postcss-plugin, easings, ease

readme

PostCSS Easings

PostCSS plugin to replace easing name from easings.net to cubic-bezier().

.snake {
  transition: all 600ms ease-in-sine;
}
.camel {
  transition: all 600ms easeInSine;
}
.snake {
  transition: all 600ms cubic-bezier(0.47, 0, 0.745, 0.715);
}
.camel {
  transition: all 600ms cubic-bezier(0.47, 0, 0.745, 0.715);
}
Sponsored by Evil Martians

Docs

Read full docs here.

changelog

Change Log

This project adheres to Semantic Versioning.

4.0.0

  • Removed Node.js 14 support.
  • Updated easings from easings.net (by @sidewayss).
  • Fixed custom easings with numbers support (by @sidewayss).

3.0.1

  • Added funding links.

3.0

  • Moved to PostCSS 8.
  • Moved postcss to peerDependencies.

2.0

  • Use PostCSS 7.
  • Remove Node.js 4 support.

1.0.1

  • Do not replace values in url() (by Fangzhou Li).

1.0

  • Use PostCSS 6.0.

0.3

  • Use PostCSS 5.0.
  • Fix error reports.

0.2

  • Support PostCSS 4.1 API.

0.1

  • Initial release.