diff --git a/gulp/tasks/manifest.js b/gulp/tasks/manifest.js new file mode 100644 index 0000000000000000000000000000000000000000..74d7232562f67c73fd0a0892f3b72252774c2238 --- /dev/null +++ b/gulp/tasks/manifest.js @@ -0,0 +1,13 @@ +/** + * Dependencies + */ +const rev = require('gulp-rev'); + +/** + * Module body / Expose + */ +module.exports = config => { + config = config || {}; + config.path = config.path || 'manifest.json'; + return rev.manifest(config); +};