Socket
Socket
Sign inDemoInstall

postcss-cli

Package Overview
Dependencies
Maintainers
2
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-cli

CLI for PostCSS


Version published
Weekly downloads
260K
decreased by-61.33%
Maintainers
2
Weekly downloads
 
Created

What is postcss-cli?

The postcss-cli package is a command-line interface for PostCSS, a tool for transforming CSS with JavaScript plugins. It allows you to process CSS files using various PostCSS plugins directly from the command line.

What are postcss-cli's main functionalities?

Basic CSS Processing

This command processes the input CSS file (input.css) and outputs the transformed CSS to the specified output file (output.css).

postcss input.css -o output.css

Using Plugins

This command uses the 'autoprefixer' plugin to add vendor prefixes to the CSS rules in the input file and outputs the result to the specified output file.

postcss --use autoprefixer -o output.css input.css

Config File

This command uses a configuration file (postcss.config.js) to specify the plugins and options for processing the CSS file.

postcss -c postcss.config.js -o output.css input.css

Watch Mode

This command watches the input CSS file for changes and automatically processes it whenever it is modified, outputting the result to the specified output file.

postcss input.css -o output.css --watch

Other packages similar to postcss-cli

Keywords

FAQs

Package last updated on 05 Dec 2023

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

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc