-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
minify css via with clean-css or csso #688
Conversation
|
can you ad a changelog entry? |
Done. PR for |
Thx for working on this feature! |
It is enabled for production by default.. I guess you want to be able to disable it via { "minifyCSS": {
"enabled": true,
"options": { }
} } Would that be okay with you? |
Ah yes now I understand. We're only talkin' production. Yes, then |
Done. I have also clarifed that this is for production only, over in the documentation-PR: #689 |
For what is the |
Take a look at my comment from half an hour ago.. It is needed because the options for the minifer have to go somewhere. |
Can't we simply skip the minification step if it's false? The minifier is then a nop anyway. Sry for being so pesky. :) Ease of use you know... |
This way you can easily disable the minifer without losing your config. The |
@stefanpenner anything else besides the changelog? |
@luto nope: (it does need a rebase though, as it no longer merges cleanly) |
done |
minify css via with clean-css or csso
Rework of #484 to statisfy the change-requests.