From bf8f1394a3b0fc0213ac069aa65b2407f1d0d090 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Thu, 28 Jan 2016 21:50:42 -0600 Subject: Removes uglify step --- gulpfile.js | 35 ++++++++++++----------------------- 1 file changed, 12 insertions(+), 23 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index dcbfdc7..3c43529 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,28 +1,17 @@ -var gulp = require('gulp'); -var uglify = require('gulp-uglify'); -var concat = require('gulp-concat'); +'use strict'; + +let gulp = require('gulp'); +let concat = require('gulp-concat'); gulp.task('build', function() { gulp.src([ - 'lib/serpentity/serpentity.js', - 'lib/serpentity/entity.js', - 'lib/serpentity/node.js', - 'lib/serpentity/node_collection.js', - 'lib/serpentity/component.js', - 'lib/serpentity/system.js', - ]) - .pipe(uglify()) - .pipe(concat('serpentity.min.js')) - .pipe(gulp.dest('dist')) - - gulp.src([ - 'lib/serpentity/serpentity.js', - 'lib/serpentity/entity.js', - 'lib/serpentity/node.js', - 'lib/serpentity/node_collection.js', - 'lib/serpentity/component.js', - 'lib/serpentity/system.js', - ]) + 'lib/serpentity.js', + 'lib/serpentity/entity.js', + 'lib/serpentity/node.js', + 'lib/serpentity/node_collection.js', + 'lib/serpentity/component.js', + 'lib/serpentity/system.js' + ]) .pipe(concat('serpentity.js')) - .pipe(gulp.dest('dist')) + .pipe(gulp.dest('dist')); }); -- cgit