UNPKG

react-translate-maker

Version:

React translation module. Internationalize your great project.

9 lines (7 loc) 180 B
import gulp from 'gulp'; import babel from 'gulp-babel'; gulp.task('build', () => { return gulp.src('./src/**/*.{js,jsx}') .pipe(babel()) .pipe(gulp.dest('./lib')); });