Skip to content
This repository has been archived by the owner on Jan 28, 2018. It is now read-only.
/ gulp-scan Public archive

A Gulp plugin to scan a file for a particular string or expression

License

Notifications You must be signed in to change notification settings

shellscape/gulp-scan

Repository files navigation

gulp-scan Build Status

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

---

Install

$ npm install --save-dev gulp-scan

Usage

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

API

scan(options)

options

term

Type: string or RegExp

A term to scan the file for. Can be either a string or regular expression.

fn

Type: Function

A function that will receive the individual matches found in a file.

License

MIT © Gilt Groupe

About

A Gulp plugin to scan a file for a particular string or expression

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •