traefik/webui/gulpfile.js

30 lines
889 B
JavaScript
Raw Normal View History

2016-07-23 17:59:54 +00:00
const gulp = require('gulp');
const HubRegistry = require('gulp-hub');
const browserSync = require('browser-sync');
2016-07-23 17:59:54 +00:00
const conf = require('./conf/gulp.conf');
2016-07-23 17:59:54 +00:00
// Load some files into the registry
const hub = new HubRegistry([conf.path.tasks('*.js')]);
2016-07-23 17:59:54 +00:00
// Tell gulp to use the tasks just loaded
gulp.registry(hub);
2016-07-23 17:59:54 +00:00
gulp.task('build', gulp.series(gulp.parallel('other', 'webpack:dist')));
gulp.task('test', gulp.series('karma:single-run'));
gulp.task('test:auto', gulp.series('karma:auto-run'));
gulp.task('serve', gulp.series('webpack:watch', 'watch', 'browsersync'));
gulp.task('serve:dist', gulp.series('default', 'browsersync:dist'));
gulp.task('default', gulp.series('clean', 'build'));
gulp.task('watch', watch);
2016-07-23 17:59:54 +00:00
function reloadBrowserSync(cb) {
browserSync.reload();
cb();
}
function watch(done) {
gulp.watch(conf.path.src('app/**/*.html'), reloadBrowserSync);
done();
}