1 | /*******************************
|
2 | * Define Install Sub-Tasks
|
3 | *******************************/
|
4 |
|
5 | // docs tasks
|
6 | const
|
7 | install = require('../install'),
|
8 | checkInstall = require('../check-install')
|
9 | ;
|
10 |
|
11 | /*
|
12 | Lets you serve files to a local documentation instance
|
13 | https://github.com/fomantic/Fomantic-UI-Docs/
|
14 | */
|
15 | module.exports = function (gulp) {
|
16 | gulp.task('install', install);
|
17 | gulp.task('install').description = 'Runs set-up';
|
18 |
|
19 | gulp.task('check-install', checkInstall);
|
20 | gulp.task('check-install').description = 'Displays current version of Fomantic';
|
21 | };
|