UNPKG

512 BJavaScriptView Raw
1/*******************************
2 * Define RTL Sub-Tasks
3 *******************************/
4
5module.exports = function (gulp) {
6
7 // rtl
8 var
9 buildRTL = require('./../rtl/build'),
10 watchRTL = require('./../rtl/watch')
11 ;
12
13 gulp.task('watch-rtl', watchRTL);
14 gulp.task('watch-rtl').description = 'DEPRECATED - use \'watch\' instead - Watch files as RTL';
15
16 gulp.task('build-rtl', buildRTL);
17 gulp.task('build-rtl').description = 'DEPRECATED - use \'build\' instead - Build all files as RTL';
18
19};