From b13115762db121dcb007864321a4bdc75ca823e2 Mon Sep 17 00:00:00 2001 From: Martin Donnelly Date: Tue, 15 Mar 2016 13:30:37 +0000 Subject: [PATCH] Updating to Version 3 --- .idea/workspace.xml | 107 +++++++++++++++++++++++++------------------- gulpfile.js | 3 +- 2 files changed, 63 insertions(+), 47 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 199df4c..491fa51 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -4,10 +4,6 @@ - - - - @@ -117,7 +113,7 @@ - + @@ -137,10 +133,10 @@ - + - + @@ -151,17 +147,17 @@ - + - + - + @@ -192,10 +188,7 @@ - - - - + @@ -281,15 +274,15 @@ @@ -363,7 +356,25 @@ @@ -1023,17 +1041,6 @@ - - - - - - - - - - - @@ -1042,14 +1049,6 @@ - - - - - - - - @@ -1058,17 +1057,9 @@ - - - - - - - - - + @@ -1106,5 +1097,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/gulpfile.js b/gulpfile.js index d79510e..99ca46f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -28,7 +28,7 @@ gulp.task('scripts', function() { .pipe(concat('app.js')) /*.pipe(gulp.dest('dist/js'))*/ /*.pipe(rename({suffix: '.min'}))*/ - .pipe(uglify()) + .pipe(uglify({mangle: false})) /*.pipe(concat('app.js'))*/ .pipe(gulp.dest('dist/js')) .pipe(notify({ message: 'Scripts task complete' })); @@ -37,6 +37,7 @@ gulp.task('scripts', function() { gulp.task('vendor', function() { return gulp.src(['html/libs/microevent.js','html/js/moment.min.js','html/js/ejs_production.js','html/js/jquery.unveil.js']) .pipe(concat('vendor.js')) + .pipe(uglify({mangle: false})) .pipe(gulp.dest('dist/js')) .pipe(notify({ message: 'Scripts task complete' })); });