From: Ben Beltran Date: Mon, 28 Mar 2016 05:24:47 +0000 (-0600) Subject: Uses babel on build X-Git-Tag: 1.0.0^2~5 X-Git-Url: https://git.r.bdr.sh/rbdr/serpentity/commitdiff_plain/f77c12fd8d3f6c35ea61413d0544a0cd7030c849?hp=e1d0944b599a85a46767fdf1f12e31e8fca98956 Uses babel on build --- diff --git a/gulpfile.js b/gulpfile.js index 3c43529..edd97d0 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,10 +1,11 @@ 'use strict'; -let gulp = require('gulp'); -let concat = require('gulp-concat'); +const Gulp = require('gulp'); +const Babel = require('gulp-babel'); +const Concat = require('gulp-concat'); -gulp.task('build', function() { - gulp.src([ +Gulp.task('build', function() { + Gulp.src([ 'lib/serpentity.js', 'lib/serpentity/entity.js', 'lib/serpentity/node.js', @@ -12,6 +13,9 @@ gulp.task('build', function() { 'lib/serpentity/component.js', 'lib/serpentity/system.js' ]) - .pipe(concat('serpentity.js')) - .pipe(gulp.dest('dist')); + .pipe(Babel({ + presets: ['es2015'] + })) + .pipe(Concat('serpentity.js')) + .pipe(Gulp.dest('dist')); });