You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789
  1. const gulp = require('gulp');
  2. const copy = require('./subtasks/copy');
  3. const scss = require('./subtasks/scss');
  4. const watch = require('./subtasks/watch');
  5. module.exports.copy = copy;
  6. module.exports.scss = scss;
  7. module.exports.watch = watch;
  8. module.exports.default = gulp.series(copy, scss);