summaryrefslogtreecommitdiffstats
path: root/src/wwwroot/libraries/fomantic/tasks/collections/install.js
blob: 7f172c324bf990068c2f3e27e7781fd2e290cb1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*******************************
 *   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';

};