gulp-content-includer
v0.0.7
Published
include files
Downloads
8
Maintainers
Readme
gulp-content-includer
a plugin for gulp.js to include files
Installation
npm install gulp-utf8-convert
Options
includerReg: RegExp of the include expression
Type: RegExp
baseSrc: basedir of the source
Type: String
deepConcat concat content recursive
Type: Boolean
default : false
Usage
var gulp = require('gulp');
var contentInclude = require('gulp-content-includer');
gulp.task('concat',function() {
gulp.src("./content.html")
.pipe(contentInclude({
includerReg:/<!\-\-include\s+"([^"]+)"\-\->/g
}))
.pipe(gulp.dest('./'));
});