-
Notifications
You must be signed in to change notification settings - Fork 16
Closed
Labels
Milestone
Description
So bin/cleancss looks something like:
#!/usr/bin/env node
var cleanCssCli = require('clean-css-cli');
return cleanCssCli(process);One could reuse the CLI to do some custom magic:
#!/usr/bin/env node
var cleanCssCli = require('clean-css-cli');
return cleanCssCli(process, function beforeMinify(cleanCssObject) { /* do whatever magic you fancy */ });Reactions are currently unavailable