UNPKG

epidemiological-week

Version:

An npm package to calucate epi week and year

26 lines (19 loc) 559 B
const path = require('path'); const gulp = require('gulp'); const del = require('del'); const filter = require('gulp-filter'); const conf = require('../conf/gulp.conf'); gulp.task('clean', clean); gulp.task('other', other); function clean() { return del([conf.paths.dist, conf.paths.tmp]); } function other() { const fileFilter = filter(file => file.stat.isFile()); return gulp.src([ path.join(conf.paths.src, '/**/*'), path.join(`!${conf.paths.src}`, '/**/*.{scss,js}') ]) .pipe(fileFilter) .pipe(gulp.dest(conf.paths.dist)); }