Package Exports
- gulp-frep
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-frep) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-frep (find and replace) 
A find and replace utility, using Frep. Replace strings or arrays of strings with an array of replacement patterns.
Getting Started
Install the module with: npm install gulp-frep
Usage
var gulp = require('gulp');
var frep = require('gulp-frep');
gulp.task('frep', function() {
gulp.src('./src/foo.html')
.pipe(frep(patterns))
.pipe(gulp.folder('./dist/foo.html'))
});Example replacement patterns
var patterns: [
{
// Strip tags from HTML
pattern: /(<([^>]+)>)/ig,
replacement: ''
},
{
// Normalize and condense newlines
pattern: /(\r\n|\n){2,}/g,
replacement: '\n'
}
];See the frep docs for options.
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality.
Author
License
Copyright (c) 2014 Jon Schlinkert Licensed under the MIT license.