Coder Social home page Coder Social logo

valeriansaliou / gulp-minify-css-names Goto Github PK

View Code? Open in Web Editor NEW

This project forked from connormiha/gulp-minify-cssnames

21.0 5.0 1.0 64 KB

:mushroom: Gulp plugin to minify CSS classes and CSS IDs

Home Page: https://www.npmjs.com/package/gulp-minify-css-names

License: MIT License

JavaScript 92.38% HTML 0.93% CSS 6.68%

gulp-minify-css-names's Introduction

gulp-minify-css-names

Test and Build NPM Downloads Buy Me A Coffee

Gulp plugin to minify CSS classes and CSS IDs.

Forked from: gulp-minify-cssnames from @Connormiha.

Usage

Minifying all names(class, id) with some postfix (default: '-post-').

Example

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'))
});

Result

.a0 {color: red;}
.a1 {color: black;}
.a2 {color: green;}
.a3 {color: blue;}
.a3::before {content: 'active'}

Example2

Our project has 3 files:

style.css
.-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'}
index.html
<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>
app.js
var $menuItems =  document.querySelectorAll('.-pre-menu_item-post-');
var $mainMenu = document.querySelector('#-pre-main-menu-post-');
Gulp task
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'))
});

Result

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');

API

gulp-minify-css-names([options])

options

Type: Object

options.method

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).

options.prefix

Type: String Default: "-pre-"

Alternative prefix for CSS names. Important: prefix should be valid for CSS class and ID

options.postfix

Type: String Default: "-post-"

Alternative postfix for CSS names. Important: postfix should be valid for CSS class and ID

options.prepend

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

options.append

Type: String Default: ""

Post-processing: append given string to transformed CSS class and ID. Important: append should be valid for CSS class and ID

options.buster

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

options.slice

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.

Why need a prefix/append?

This plugin match by RegExp in all file/stream content. This will reduce the likelihood of wrong replacement.

gulp-minify-css-names's People

Contributors

connormiha avatar valeriansaliou avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Forkers

marxvn

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.