0.2.4 • Published 9 years ago

gulp-steel-css-postfix v0.2.4

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

#gulp-steel-css-postfix

###Usage

use glob pattern to filter your file path;

the filter could also be Array or String, like:

{filter:["pages/*.*"]} 
{filter:"lib/*.*"}

In your steel-gulpfile, you can use in this way:

var gscp = require('gulp-steel-css-postfix');

gscp({ 
	filter:["lib/*.*","pages/*.*"] 
})

###Example If your file path is "src/css/pages/pageA.css", the filter(sub-path) pattern should be "pages/.", like:

function testCss(){
	gulp.src(['src/css/**/*.*'])
        .pipe($.steelCssPostfix({ 
             filter:["pages/pointsmall/*.*"] 
        }))
	.pipe(gulp.dest(front_base + '/css/'));
}

In the function testCss, the whole file path is "src/css/pages/pointsmall/."

0.2.4

9 years ago

0.2.3

9 years ago

0.2.2

9 years ago

0.2.1

9 years ago

0.2.0

9 years ago

0.1.5

9 years ago

0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago

0.0.1

9 years ago