A plugin to scan a file for a string or expression
🚀 Are you ready to tackle ES6 and hone your JavaScript Skills? 🚀
Check out these outstanding ES6 courses by @wesbos
$ npm install --save-dev gulp-scan
var gulp = require('gulp');
var scan = require('gulp-scan');
gulp.task('default', function () {
return gulp.src('src/file.ext')
.pipe(scan({ term: '@import', fn: function (match, file) {
// do something with {String} `match`
// `file` is a clone of the vinyl file.
}}));
});
Type: string
or RegExp
A term to scan the file for. Can be either a string or regular expression.
Type: Function
A function that will receive the individual matches found in a file.
MIT © Gilt Groupe