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/collections/install.js

24 lines
588 B
JavaScript

/*******************************
* Define Install Sub-Tasks
*******************************/
/*
Lets you serve files to a local documentation instance
https://github.com/Semantic-Org/Semantic-UI-Docs/
*/
module.exports = function (gulp) {
var
// docs tasks
install = require('./../install'),
checkInstall = require('./../check-install')
;
gulp.task('install', install);
gulp.task('install').description = 'Runs set-up';
gulp.task('check-install', checkInstall);
gulp.task('check-install').description = 'Displays current version of Semantic';
};