mod-build 3.6.28--beta.1 → 3.6.28--beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/gulp-tasks/tasks.js +12 -0
- package/package.json +1 -1
package/gulp-tasks/tasks.js
CHANGED
|
@@ -384,6 +384,18 @@ module.exports = function() {
|
|
|
384
384
|
}
|
|
385
385
|
},
|
|
386
386
|
|
|
387
|
+
// Copy videos
|
|
388
|
+
'copy-videos': {
|
|
389
|
+
subtasks: [],
|
|
390
|
+
func: function(opts) {
|
|
391
|
+
if ('undefined' === typeof opts.gulpTasksFolderPath) {
|
|
392
|
+
opts.gulpTasksFolderPath = '.';
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
return require(opts.gulpTasksFolderPath + '/copy-videos')(opts.gulp, opts.gulpSettings);
|
|
396
|
+
}
|
|
397
|
+
},
|
|
398
|
+
|
|
387
399
|
// Grab theme json file from shared resources
|
|
388
400
|
'grab-theme-json': {
|
|
389
401
|
subtasks: [],
|