🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

postcss-reduce-transforms

Package Overview
Dependencies
Maintainers
7
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-reduce-transforms

Reduce transform functions with PostCSS.

5.1.0
Source
npm
Version published
Weekly downloads
10M
-9.16%
Maintainers
7
Weekly downloads
 
Created
Source

postcss-reduce-transforms

Reduce transform functions with PostCSS.

Install

With npm do:

npm install postcss-reduce-transforms --save

Example

This module will reduce transform functions where possible. For more examples, see the tests.

Input

h1 {
  transform: rotate3d(0, 0, 1, 20deg);
}

Output

h1 {
  transform: rotate(20deg);
}

Usage

See the PostCSS documentation for examples for your environment.

Contributors

See CONTRIBUTORS.md.

License

MIT © Ben Briggs

FAQs

Package last updated on 01 Mar 2022

Did you know?

Socket

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