grunt-contrib-cssmin
grunt-contrib-cssmin copied to clipboard
Compress CSS files.
Hi all, I'm using usemin to also generating sourcemap in my grunt chain. I've used the suggestion indicated here https://github.com/yeoman/grunt-usemin/issues/220 for being able to generate sourcemap. **However grunt/node is using...
Adobe has a repo, [cssfilterlab](https://github.com/adobe/cssfilterlab), which is a bit old, but still useful to run. It's unlikely they'll be updating it any time soon. The project still uses grunt 0.3,...
Depending on how the CSS sourceMaps were written, we may have [issues with filenames](https://github.com/gruntjs/grunt-contrib-cssmin/issues/204). grunt-contrib-uglify let's you specify a [sourceMapIn](https://github.com/gruntjs/grunt-contrib-uglify#user-content-sourcemapincludesources) method to help deal with these issues. This plugin should...
``` js cssmin: { options: { sourceMap: true, srcRoot: '../../' //add }, target: { files: { 'build/css/main.min.css': 'src/css/*.css' } } }, ``` `sourceRoot`: Optional. The URL root from which all...
When I run `grunt build --verbose` I am getting the following when the **cssmin** task is run ``` Running "cssmin:generated" (cssmin) task Verifying property cssmin.generated exists in config...OK Files: bower_components/foundation/css/foundation.css,...
I am using generator-angular which use this css minifier. Problem is when i try to build my project cssmin started and minify my css file from 90kb -> 4kb. Then...
Doesn't seem to set the option to false by default. Didn't have this option set to anything before, and seemed to work fine for all my url's. Did a diff...
I am trying to add a container query to my stylesheet ``` @container (min-width: 320px) { #test { background: pink; } } ``` And I get unexpected and invalid character/property...
Bumps [ejs](https://github.com/mde/ejs) from 3.1.9 to 3.1.10. Release notes Sourced from ejs's releases. v3.1.10 Version 3.1.10 Commits d3f807d Version 3.1.10 9ee26dd Mocha TDD e469741 Basic pollution protection 715e950 Merge pull request...