UNPKG

react-progress-bar-plus-fixed

Version:
12 lines (10 loc) 300 B
import gulp from 'gulp'; import webpackStream from 'webpack-stream'; import webpackConfig from '../../../webpack.config'; import webpack from 'webpack'; export default () => { return gulp .src(['src/index.js']) .pipe(webpackStream(webpackConfig, webpack)) .pipe(gulp.dest('dist')); };