Include scripts and styles into your HTML files automatically.
npm install gulp-include-sourceGulp plugin to include scripts and styles into your HTML files automatically.
Install with npm
```
npm install gulp-include-source --save-dev
#### gulpfile.js
`js`
gulp.task('html', function() {
return gulp.src( './client/index.html' )
.pipe( includeSources() )
.pipe( gulp.dest('build/') );
});
#### index.html
`html`
#### scriptList
``
bower_components/jquery/dist/jquery.js
bower_components/angular/angular.js
#### Result:
`html`
#### options.cwd
Type: String
Base directory from where the plugin will search for source files.
#### options.scriptExt
Type: String
When available, will override script extension in resulted HTML code.
#### options.styleExt
Type: String`
When available, will override style extension in resulted HTML code.
MIT © André Gil