12345678910111213141516171819 |
- /*******************************
- * Define RTL Sub-Tasks
- *******************************/
- module.exports = function (gulp) {
- // rtl
- var
- buildRTL = require('./../rtl/build'),
- watchRTL = require('./../rtl/watch')
- ;
- gulp.task('watch-rtl', watchRTL);
- gulp.task('watch-rtl').description = 'DEPRECATED - use \'watch\' instead - Watch files as RTL';
- gulp.task('build-rtl', buildRTL);
- gulp.task('build-rtl').description = 'DEPRECATED - use \'build\' instead - Build all files as RTL';
- };
|