copyleftconf-website/gulp/tasks/manifest.js

14 lines
226 B
JavaScript
Raw Normal View History

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