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