cach-radio/inc/themes/castanet/gulp/tasks/dev/dev.js

10 lines
304 B
JavaScript

var gulp = require('gulp');
var HubRegistry = require('gulp-hub');
// load some files into the registry
var hub = new HubRegistry(['tasks/dev/*.js']);
// tell gulp to use the tasks just loaded
gulp.registry(hub);
gulp.task('dev', gulp.series('js-concat', 'sass', 'copy-player-files','copy-css-files'))