File diff 0b1da0e85e83 → dd8f0ba9c517
gulp/tasks/manifest.js
Show inline comments
 
new file 100644
 
/**
 
 * Dependencies
 
 */
 
const rev = require('gulp-rev');
 

	
 
/**
 
 * Module body / Expose
 
 */
 
module.exports = config => {
 
  config = config || {};
 
  config.path = config.path || 'manifest.json';
 
  return rev.manifest(config);
 
};