Restructure

This commit is contained in:
Geomitron
2023-11-27 18:53:09 -06:00
parent 558d76f582
commit 49c3f38f99
758 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
/*******************************
* Define Various Sub-Tasks
*******************************/
/*
Lets you serve files to a local documentation instance
https://github.com/Semantic-Org/Semantic-UI-Docs/
*/
module.exports = function (gulp) {
var
clean = require('./../clean'),
version = require('./../version')
;
gulp.task('clean', clean);
gulp.task('clean').description = 'Clean dist folder';
gulp.task('version', version);
gulp.task('version').description = 'Clean dist folder';
};