UNPKG

react-iframe

Version:

Easy peasy lemon squeezy iframes with react

11 lines (9 loc) 247 B
const gulp = require('gulp'), babel = require('gulp-babel'), rename = require("gulp-rename"); gulp.task('default', function(){ return gulp.src('index.js') .pipe(babel()) .pipe(rename('index.min.js')) .pipe(gulp.dest('./')); });