Skip to content

kayleecodes1/gulp-template-cache

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Gulp Template Cache

This is a Gulp plugin that converts HTML files into JavaScript strings that can then be quickly accessed through a global variable.

Installation and Usage

In a shell:

npm install --save-dev gulp-template-cache

In your gulpfile.js:

var templateCache = require('gulp-template-cache');

gulp.task('compile:templates', function() {
  return gulp.src('src/**/*.tpl.html')
    .pipe(templateCache())
    .pipe(gulp.dest('build'));
});

Options

  • fileName: The name of the JavaScript file that should be output by the plugin. Defaults to 'templates.js'.
  • globalVariable: The name of the global variable that should reference the template cache. Defaults to 'templateCache'.
  • nameFunction: A function that takes a template filepath and returns the string name of that template in the cache. Defaults to using the raw filepath.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published