File: gulpfile.js

Recommend this page to a friend!
  Classes of Manolo Salsas   React JS SVG Library   gulpfile.js   Download  
File: gulpfile.js
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: React JS SVG Library
Generate animated graphics in SVG using React JS
Author: By
Last change: Update of gulpfile.js
Date: 2 years ago
Size: 226 bytes
 

Contents

Class file image 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']);