symposion_app/gulp/tasks/manifest.js
2016-02-27 17:23:35 -06:00

13 lines
226 B
JavaScript

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