aboutsummaryrefslogtreecommitdiff
path: root/semantic/tasks/collections/install.js
diff options
context:
space:
mode:
authorFuwn <[email protected]>2020-12-14 23:29:56 -0800
committerFuwn <[email protected]>2020-12-14 23:29:56 -0800
commit002eb44eee98dc838bc854b945ab0cbf4884dd57 (patch)
tree428ae460c79baf32fba8ecf16e6fe02a88c3b971 /semantic/tasks/collections/install.js
parent:star: (diff)
downloadme-rewrite-angular.tar.xz
me-rewrite-angular.zip
Diffstat (limited to 'semantic/tasks/collections/install.js')
-rw-r--r--semantic/tasks/collections/install.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/semantic/tasks/collections/install.js b/semantic/tasks/collections/install.js
deleted file mode 100644
index 7f172c3..0000000
--- a/semantic/tasks/collections/install.js
+++ /dev/null
@@ -1,23 +0,0 @@
-/*******************************
- * 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';
-
-};