AngularJS template assembler for Gulp.js
npm install gulp-angular-templates$templateCache` service.
Install it with `npm install gulp-angular-templates --save-dev`.
Usage
`javascript
var angularTemplates = require('gulp-angular-templates');
gulp.task('html', function () {
return gulp.src('app/partials/*/.html')
.pipe(angularTemplates())
.pipe(gulp.dest('./build/'));
});
`
API
$3
#### options.basePath
Type: String
The path that should be prefixed to the path that was specified using `gulp.src`.
#### options.module
Type: String
The name of the module that will be used.
#### options.standalone
Type Boolean
Indicate whether the module name that was specified using `options.module`` is intended to be standalone.