Legacy CLI wrapper for Autoprefixer, version 1.0.0. This tool allows adding vendor prefixes to CSS from the command line but is no longer actively maintained. It was the original CLI for Autoprefixer before postcss-cli became the official successor. Release cadence is zero; the package has not been updated since its initial release. Key differentiator: it provides a simple autoprefixer-cli command for users who cannot migrate to PostCSS. However, users should prefer postcss-cli or directly integrate Autoprefixer via PostCSS for modern projects.
npm install autoprefixer-cliNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Installs the legacy CLI globally, creates a simple input CSS, runs autoprefixer, and displays the prefixed output.
Migrate to postcss-cli: npm uninstall -g autoprefixer-cli; npm install -g postcss-cli autoprefixer
Use correct syntax: autoprefixer-cli -o output.css input.css
Install globally: npm install -g autoprefixer-cli, or use npx autoprefixer-cli
Use autoprefixer-cli -h
Install globally: npm install -g autoprefixer-cli
Ensure the input CSS file exists and is specified as last argument: autoprefixer-cli -o output.css input.css
Add browserslist to package.json or .browserslistrc, or pass --browsers '> 1%'