From f77c12fd8d3f6c35ea61413d0544a0cd7030c849 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Sun, 27 Mar 2016 23:24:47 -0600 Subject: Uses babel on build --- gulpfile.js | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) 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')); }); -- cgit