diff --git a/gulp/tasks/copy.js b/gulp/tasks/copy.js new file mode 100644 index 0000000000000000000000000000000000000000..7f2f11cd4e98c57fd435cbed8c5db1b95ce505c6 --- /dev/null +++ b/gulp/tasks/copy.js @@ -0,0 +1,12 @@ +/** + * Dependencies + */ +const gulp = require('gulp'); + +/** + * Module body + */ +module.exports = (entry, config) => { + config = config || {}; + return gulp.src(entry, config); +};