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.

16 lines
365 B

  1. /*******************************
  2. Define Sub-Tasks
  3. *******************************/
  4. module.exports = function(gulp) {
  5. var
  6. // rtl
  7. buildRTL = require('./../rtl/build'),
  8. watchRTL = require('./../rtl/watch')
  9. ;
  10. gulp.task('watch-rtl', 'Build all files as RTL', watchRTL);
  11. gulp.task('build-rtl', 'Watch files as RTL ', buildRTL);
  12. };