I am trying to use clean-css to minify my CSS files using a simple terminal command on Mac. I have tried everything from installing an older version of clean-css like this:
npm install [email protected] --save
to installing the command line version like this:
npm install clean-css-cli --save
The installation seems to go fine, but then whenever I try to run
cleancss -o styles.min.css styles.css
I get an error saying, "command not found." Am I missing something?
If
clean-css
is also not in the package.json file of your project's directory, perhaps try to install it globally:After installing, this should provide you the version that was installed (try in a new shell):
I do not have a Mac, but I believe you will also be able to run through
npm
like so:In my case, the former presents
4.1.9
(CLI) and the latter3.10.10
(API). More information of the version 4 division in clean-css Github.