wishthis/semantic/tasks/collections/install.js

22 lines
575 B
JavaScript
Raw Normal View History

2022-01-13 13:00:31 +00:00
/*******************************
* Define Install Sub-Tasks
*******************************/
2023-08-17 09:47:40 +00:00
// docs tasks
const
install = require('../install'),
checkInstall = require('../check-install')
;
2022-01-13 13:00:31 +00:00
/*
Lets you serve files to a local documentation instance
2023-08-17 09:47:40 +00:00
https://github.com/fomantic/Fomantic-UI-Docs/
2022-01-13 13:00:31 +00:00
*/
module.exports = function (gulp) {
2023-08-17 09:47:40 +00:00
gulp.task('install', install);
gulp.task('install').description = 'Runs set-up';
2022-01-13 13:00:31 +00:00
2023-08-17 09:47:40 +00:00
gulp.task('check-install', checkInstall);
gulp.task('check-install').description = 'Displays current version of Fomantic';
2022-01-13 13:00:31 +00:00
};