cacert-boardvoting/ui/semantic/tasks/collections/install.js
Jan Dittberner d7a742d97d Update UI framework
- add package.json for npm/npx
- update to fomantic-ui
- move ui files to ui directory
- add UI build documentation to README.md
- add ui target to Makefile
- add addPrefix handler in boardvoting.go to allow the same /static/
  prefix for static resources
2022-05-08 16:13:50 +02:00

23 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';
};