Jan Dittberner
d7a742d97d
- 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
23 lines
588 B
JavaScript
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';
|
|
|
|
};
|