wishthis/node_modules/fomantic-ui/tasks/rtl/watch.js
2023-08-17 11:47:40 +02:00

13 lines
294 B
JavaScript

/*******************************
* Watch Task
*******************************/
const
gulp = require('gulp'),
watch = require('../watch')
;
// RTL watch are now handled by the default watch process
module.exports = function (callback) {
gulp.series(watch)(callback);
};