You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

27 lines
672 B

/*******************************
Set-up
*******************************/
var
gulp = require('gulp-help')(require('gulp')),
config = require('./tasks/config/user'),
// import tasks
watch = require('./tasks/watch'),
build = require('./tasks/build'),
clean = require('./tasks/clean'),
version = require('./tasks/version')
;
gulp.task('watch', 'Watch for site/theme changes', watch);
gulp.task('build', 'Builds all files from source', build);
gulp.task('clean', 'Clean dist folder', clean);
gulp.task('version', 'Displays current version of Semantic', version);
gulp.task('default', false, [
'check install'
]);
if(config.admin) {
}