UNPKG

510 BJavaScriptView Raw
1/*******************************
2 * Define Various Sub-Tasks
3 *******************************/
4
5const
6 clean = require('../clean'),
7 version = require('../version')
8;
9
10/*
11 Lets you serve files to a local documentation instance
12 https://github.com/fomantic/Fomantic-UI-Docs/
13*/
14module.exports = function (gulp) {
15 gulp.task('clean', clean);
16 gulp.task('clean').description = 'Clean dist folder';
17
18 gulp.task('version', version);
19 gulp.task('version').description = 'Clean dist folder';
20};