Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
grunt-contrib-cssmin
Advanced tools
The grunt-contrib-cssmin package is a Grunt plugin that helps you minify CSS files. It uses the clean-css library to perform the minification, which reduces the size of CSS files by removing unnecessary whitespace, comments, and other redundant data. This can help improve the performance of your web applications by reducing the amount of data that needs to be transferred over the network.
Minify CSS files
This feature allows you to minify CSS files. The code sample demonstrates how to configure the grunt-contrib-cssmin plugin to minify all CSS files in the 'src/css' directory and output the minified files to the 'dist/css' directory with a '.min.css' extension.
{
"grunt.initConfig": {
"cssmin": {
"target": {
"files": [{
"expand": true,
"cwd": "src/css",
"src": ["*.css", "!*.min.css"],
"dest": "dist/css",
"ext": ".min.css"
}]
}
}
},
"grunt.loadNpmTasks": "grunt-contrib-cssmin",
"grunt.registerTask": ["default", ["cssmin"]]
}
Combine and minify multiple CSS files
This feature allows you to combine multiple CSS files into a single file and then minify it. The code sample shows how to configure the plugin to combine 'file1.css' and 'file2.css' from the 'src/css' directory into a single 'combined.min.css' file in the 'dist/css' directory.
{
"grunt.initConfig": {
"cssmin": {
"target": {
"files": {
"dist/css/combined.min.css": ["src/css/file1.css", "src/css/file2.css"]
}
}
}
},
"grunt.loadNpmTasks": "grunt-contrib-cssmin",
"grunt.registerTask": ["default", ["cssmin"]]
}
clean-css is a fast and efficient CSS optimizer for Node.js. It is the underlying library used by grunt-contrib-cssmin for minification. While grunt-contrib-cssmin is a Grunt plugin, clean-css can be used directly in Node.js projects without the need for Grunt.
cssnano is a modern, modular CSS minifier that is built on top of the PostCSS ecosystem. It offers a wide range of optimizations and is highly configurable. Unlike grunt-contrib-cssmin, which is a Grunt plugin, cssnano can be used with various build tools and task runners, including Gulp and Webpack.
uglifycss is a simple CSS minifier that removes comments and whitespace. It is less feature-rich compared to grunt-contrib-cssmin and clean-css, but it is very fast and can be a good choice for simple minification tasks.
Compress CSS files.
This plugin requires Grunt ~0.4.0
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-contrib-cssmin --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-contrib-cssmin');
This plugin was designed to work with Grunt 0.4.x. If you're still using grunt v0.3.x it's strongly recommended that you upgrade, but in case you can't please use v0.3.2.
Run this task with the grunt cssmin
command.
Task targets, files and options may be specified according to the grunt Configuring tasks guide.
Files are compressed with clean-css.
Type: String
Default: null
Prefix the compressed source with the given banner, with a linebreak inbetween.
Type: String
Number
Default: '*'
To keep or remove special comments, exposing the underlying option from clean-css.. '*'
for keeping all (default), 1
for keeping first one, 0
for removing all.
Choices: false
, 'min'
, 'gzip'
Default: false
Either do not report anything, report only minification result, or report minification and gzip results.
This is useful to see exactly how well clean-css is performing but using 'gzip'
will make the task take 5-10x longer to complete.
Example ouput using 'gzip'
:
Original: 198444 bytes.
Minified: 101615 bytes.
Gzipped: 20084 bytes.
cssmin: {
combine: {
files: {
'path/to/output.css': ['path/to/input_one.css', 'path/to/input_two.css']
}
}
}
cssmin: {
add_banner: {
options: {
banner: '/* My minified css file */'
},
files: {
'path/to/output.css': ['path/to/**/*.css']
}
}
}
.min.css
extensioncssmin: {
minify: {
expand: true,
cwd: 'release/css/',
src: ['*.css', '!*.min.css'],
dest: 'release/css/',
ext: '.min.css'
}
}
Task submitted by Tim Branyen
This file was generated on Sat May 25 2013 18:52:13.
FAQs
Minify CSS
The npm package grunt-contrib-cssmin receives a total of 0 weekly downloads. As such, grunt-contrib-cssmin popularity was classified as not popular.
We found that grunt-contrib-cssmin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.