
Security News
Feross on the 10 Minutes or Less Podcast: Nobody Reads the Code
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.
gulp-minify-css-names
Advanced tools
Gulp plugin to minify CSS classes and CSS IDs.
Forked from: gulp-minify-cssnames from @Connormiha.
Minifying all names(class, id) with some postfix (default: '-post-').
We have css file:
.-pre-menu-post- {color: red;}
.-pre-menu_top-post- {color: black;}
.-pre-menu_item-post- {color: green;}
.-pre-menu_item_active-post- {color: blue;}
.-pre-menu_item_active-post-::before {content: 'active'}
var gulp = require('gulp');
var gulpMinifyCssNames = require('gulp-minify-css-names');
gulp.task('minify-css-names', function() {
return gulp.src(['src/*.css'])
.pipe(gulpMinifyCssNames())
.pipe(gulp.dest('build'))
});
.a0 {color: red;}
.a1 {color: black;}
.a2 {color: green;}
.a3 {color: blue;}
.a3::before {content: 'active'}
Our project has 3 files:
.-pre-menu-post- {color: red;}
.-pre-menu_top-post- {color: black;}
.-pre-menu_item-post- {color: green;}
.-pre-menu_item_active-post- {color: blue;}
.-pre-menu_item_active-post-::before {content: 'active'}
<div class="menu-post-" id="-pre-main-menu-post-">
<div class="menu_item-post-">1</div>
<div class="menu_item-post-">2</div>
<div class="menu_item-post- .-pre-menu_item_active-post-">3</div>
</div>
var $menuItems = document.querySelectorAll('.-pre-menu_item-post-');
var $mainMenu = document.querySelector('#-pre-main-menu-post-');
var gulp = require('gulp');
var gulpMinifyCssNames = require('gulp-minify-css-names');
gulp.task('minify-css-names', function() {
return gulp.src(['src/style.css', 'src/index.html', 'src/app.js'])
.pipe(gulpMinifyCssNames())
.pipe(gulp.dest('build'))
});
style.css
.a0 {color: red;}
.a1 {color: black;}
.a2 {color: green;}
.a3 {color: blue;}
.a3::before {content: 'active'}
index.html
<div class="a0" id="a4">
<div class="a2">1</div>
<div class="a2">2</div>
<div class="a2 a3">3</div>
</div>
app.js
var $menuItems = document.querySelectorAll('.a2');
var $mainMenu = document.querySelector('#a4');
Type: Object
Type: String
Default: index
CSS names minification method (either index, hash-weak or hash-strong).
You may use the non-default hash-* methods to ensure generated class names are always static given the same real class name. This can be useful if you're having cache busting issues between your HTML and CSS (eg. caches out-of-sync). The hash-weak is a smaller 32-bits hash while the hash-strong is a stronger 64-bits hash (use the strong one if you have so many CSS classes that you risk hash collision).
Type: String
Default: "-pre-"
Alternative prefix for CSS names.
Important: prefix should be valid for CSS class and ID
Type: String
Default: "-post-"
Alternative postfix for CSS names.
Important: postfix should be valid for CSS class and ID
Type: String
Default: "a"
Post-processing: prepend given string to transformed CSS class and ID.
Important: prepend should be valid for CSS class and ID
Type: String
Default: ""
Post-processing: append given string to transformed CSS class and ID.
Important: append should be valid for CSS class and ID
Type: String
Default: ""
Hash buster: concatenate the value to hash with given buster value. Can be used to change all hashes at the same time.
Requires: method to be a hash method
Type: Number
Default: -1
Slice minified name: limit the final minified to provided length. This can be used to pick the first values of the hash (removing the last characters) and thus reduce the final size of the CSS file even more. As this reduces entropy on the final values, the collision detector may (or may not) kick in, especially if you have a lot of different CSS names.
Type: Boolean
Default: false
Minification dry-run: this will compute minified CSS class names, check for collisions and error out if an issue arise, but will not replace actual class names in the output. This can be used in development environments to simulate the behavior of the library without altering original class names, and easily switch it on and off to test things out.
This plugin match by RegExp in all file/stream content. This will reduce the likelihood of wrong replacement.
FAQs
Gulp plugin to minify CSS classes and CSS IDs
We found that gulp-minify-css-names demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.