1.0.0 • Published 6 years ago
gulp-text-include v1.0.0
This is a component that can import into any html file
--/dist
--/components
  --components1.html
--index.html
  gulpfile.jsgulpfile.js
var include = require('gulp-text-include')
gulp.task('include',function(){
    return gulp.src('index.html')
    .pipe(include())
    .pipe(gulp.dest('dist'));
});index.html
<include src="components/components1.html">
<include src="components/components1.html"></include>