mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-07-09 03:25:09 +00:00
12 lines
268 B
JavaScript
12 lines
268 B
JavaScript
/*******************************
|
|
* Watch Task
|
|
*******************************/
|
|
|
|
var
|
|
gulp = require('gulp')
|
|
;
|
|
|
|
// RTL watch are now handled by the default watch process
|
|
module.exports = function (callback) {
|
|
gulp.series(require('../watch'))(callback);
|
|
}; |