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.

index.js 385B

12345678910
  1. const gulp = require('gulp'),
  2. copy = require('./subtasks/copy'),
  3. less = require('./subtasks/less')
  4. watch = require('./subtasks/watch');
  5. module.exports.copy = copy;
  6. module.exports.less = less;
  7. module.exports.watch = watch;
  8. // TODO - these tasks are not running properly in series - less executes before copy has completed.
  9. module.exports.default = gulp.series(copy, less);