gulp-batch-replace

0.0.0 • Public • Published

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' ],
	...
];

Readme

Keywords

none

Package Sidebar

Install

npm i gulp-batch-replace

Weekly Downloads

1,120

Version

0.0.0

License

MIT

Last publish

Collaborators

  • metrime