You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-boardvoting/ui/semantic/tasks/rtl/build.js

13 lines
269 B
JavaScript

/*******************************
* Build Task
*******************************/
var
gulp = require('gulp')
;
// RTL builds are now handled by the default build process
module.exports = function (callback) {
gulp.series(require('../build'))(callback);
};