Recommend this page to a friend! |
Classes of Manolo Salsas | > | React JS SVG Library | > | gulpfile.js | > | Download |
|
|
![]() |
var gulp = require('gulp'); var babel = require('gulp-babel'); gulp.task('bundle', bundle); function bundle () { gulp.src('./src/*.js') .pipe(babel()) .pipe(gulp.dest('./dist')); } gulp.task('build', ['bundle']); |