UNPKG

epidemiological-week

Version:

An npm package to calucate epi week and year

47 lines (39 loc) 1.08 kB
const gulp = require('gulp'); const gutil = require('gulp-util'); const webpack = require('webpack'); const webpackConf = require('../conf/webpack.conf'); const webpackDistConf = require('../conf/webpack-dist.conf'); const gulpConf = require('../conf/gulp.conf'); gulp.task('webpack:dev', done => { webpackWrapper(false, webpackConf, done); }); gulp.task('webpack:watch', done => { webpackWrapper(true, webpackConf, done); }); gulp.task('webpack:dist', done => { process.env.NODE_ENV = 'production'; webpackWrapper(false, webpackDistConf, done); }); function webpackWrapper(watch, conf, done) { const webpackBundler = webpack(conf); const webpackChangeHandler = (err, stats) => { if (err) { gulpConf.errorHandler('Webpack')(err); } gutil.log(stats.toString({ colors: true, chunks: false, hash: false, version: false })); if (done) { done(); done = null; } }; if (watch) { webpackBundler.watch(200, webpackChangeHandler); } else { webpackBundler.run(webpackChangeHandler); } }