innotec-materials
Version:
Innotec Materials is an UI framework who's desgined for all products of Innotec GmbH. Innotec Materials is based on Angular 2 an bootstrap.
16 lines (11 loc) • 309 B
JavaScript
;
const gulp = require('gulp');
const watch = require('gulp-watch');
require('require-dir')('./gulp-tasks');
gulp.task('default', () => {
gulp.start('lint');
});
gulp.task('watch', () => {
// Endless stream mode
return gulp.watch('components/**/*.pug', { verbose: true } , ['pug']);
});