Package Exports
- postcss-will-change
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (postcss-will-change) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
PostCSS Will Change 
PostCSS plugin to insert 3D hack before will-change property.
This plugin uses backface-visibility
to has prevent overriding
more popular transform
property.
Use this plugin only before Autoprefixer. It will add vendor prefixes
to backface-visibility
.
.foo {
will-change: transform;
}
.foo {
backface-visibility: hidden;
will-change: transform;
}
Usage
postcss([ require('postcss-will-change') ])
See PostCSS docs for examples for your environment.