mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-07-09 03:25:09 +00:00
Restructure
This commit is contained in:
23
src-angular/assets/semantic/tasks/collections/install.js
Normal file
23
src-angular/assets/semantic/tasks/collections/install.js
Normal file
@@ -0,0 +1,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';
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user