blob: 3eae606bc7f9e2797d6569abb53ac979c793ca90 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*******************************
* 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';
};
|