0.0.0 • Published 10 years ago

gulp-batch-replace v0.0.0

Weekly downloads
1,412
License
-
Repository
-
Last release
10 years ago

gulp-batch-replace

A gulp-replace fork for batch replacing files.

##Installation

npm install gulp-batch-replace

Usage

var replaceThis = [
	[ 'original', 'replacement' ],
	[ 'original1', 'replacement1' ],
	[ 'original2', 'replacement2' ]
];

var replace = require('gulp-batch-replace);

gulp.task('example', function(){
	gulp.src('foo.txt')
		.pipe(replace(replaceThis))
		.pipe(gulp.dest('bar/'));
});

API

gulp-batch-replace can be called with a string or regex.

replace(array)

array

Should contain subarrays, where the first value is the search parameter (string or regexp) and the second value is the replacement value (string).

You can also mix search parameter types, for example:

var replaceMe = [
	[ 'original', 'replacement' ],
	[ /regexp/g, 'replacement' ],
	...
];