dd8f0ba9c5
Closes #3
13 lines
226 B
JavaScript
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);
|
|
};
|