File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ gulp.task("import", function() {
1717
1818OPTIONS
1919-------
20- #### filter
20+ #### filter
21+ RegExp, default: null (no filter).
2122Process only files which match to regexp.
22- RegExp, default: null (no filter).
2323Any other non-matched lines will be leaved as is.
2424Example:
2525``` js
@@ -75,6 +75,9 @@ If you will do `gulp.src("*.css")` gulp will read `a.css` and `b.css`,
7575and plugin also will try to read these files. It is double job.
7676Do instead: ` gulp.src("main.css") `
7777
78+ ** Use filter option: **
79+ If you need exclude files from import, try use ` filter ` only option (it is faster) and avoid others.
80+
7881SIMILAR PROJECTS
7982----------------
8083https://npmjs.org/package/gulp-coimport/
@@ -106,7 +109,8 @@ CHANGELOG
106109- added option 'extensions'
107110- added option 'filter'
108111
109- 2.0 [ 28 Jun 2015]
112+ 2.0 [ 30 Jun 2015]
110113- changed parse algorithm
111114- can handle recursive import
115+ - can handle minified css files
112116- added option 'matchPattern'
You can’t perform that action at this time.
0 commit comments