mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-07-09 03:25:09 +00:00
Restructure
This commit is contained in:
19
src-angular/assets/semantic/tasks/collections/rtl.js
Normal file
19
src-angular/assets/semantic/tasks/collections/rtl.js
Normal file
@@ -0,0 +1,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';
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user