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.
30 lines
661 B
30 lines
661 B
/*******************************
|
|
Set-up
|
|
*******************************/
|
|
|
|
|
|
var
|
|
gulp = require('gulp-help')(require('gulp')),
|
|
|
|
// config
|
|
config = require('./tasks/config/')
|
|
|
|
;
|
|
|
|
|
|
/*******************************
|
|
Tasks
|
|
*******************************/
|
|
|
|
/*
|
|
All tasks are defined in sub-folder "tasks/"
|
|
*/
|
|
|
|
gulp.task('default', false, [
|
|
'check install'
|
|
]);
|
|
|
|
//gulp.task('watch', 'Watch for site/theme changes', watch);
|
|
gulp.task('build', 'Builds all files from source', require('./tasks/build'));
|
|
//gulp.task('clean', 'Clean dist folder', clean);
|
|
//gulp.task('version', 'Displays current version of Semantic', version);
|