Skip to content
forked from 2gis/gulp.bless

Gulp plugin for CSS Post-Processor Bless

License

Notifications You must be signed in to change notification settings

ktoto/gulp.bless

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gulp.bless

Gulp plugin for CSS Post-Processor Bless (based on 4.0.0-development branch)

Usage

Very simple:

var bless = require('gulp.bless');
var concat = require('gulp-concat');

gulp.src('css/ie/*.css')
  .pipe(concat('ie8.css'))
  .pipe(bless())
  .pipe(gulp.dest('build/assets'));

Differences from gulp-bless node package

This plugin uses the developer bless build version 4 (bless4 npm package), where there are no stupid bugs related to the malfunction of regular expressions for complex css files. Version 4 works on the package css, which in turn uses the package css-parse that correctly handles even complex css files.

About

Gulp plugin for CSS Post-Processor Bless

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 94.8%
  • JavaScript 5.2%