From 4c3df0a48a256d267949fc9b2b4b5bf96561e1d5 Mon Sep 17 00:00:00 2001 From: Martin Donnelly Date: Wed, 12 Jun 2019 14:11:47 +0100 Subject: [PATCH] Creation of 'development' branch --- gulp/build.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gulp/build.js b/gulp/build.js index 3ccd5f2..de4dcb0 100644 --- a/gulp/build.js +++ b/gulp/build.js @@ -55,13 +55,13 @@ gulp.task('vendor', function() { .pipe(concat('vendor.js')) /* .pipe(uglify({ 'mangle': false }))*/ - .pipe(gulp.dest(`live/js`)); + .pipe(gulp.dest('live/js')); }); gulp.task('fonts', function() { return gulp.src('src/fonts.list') .pipe(googleWebFonts(fontOptions)) - .pipe(gulp.dest(`live/fonts`)) + .pipe(gulp.dest('live/fonts')) ; }); @@ -70,7 +70,6 @@ gulp.task('gotham', function() { gulp.src(['fonts/GothamSSm-Black.otf', 'fonts/GothamSSm-Bold.otf', 'fonts/GothamSSm-Book.otf', 'fonts/GothamSSm-Light.otf', 'fonts/GothamSSm-Medium.otf']).pipe(gulp.dest('live/fonts')); }); - gulp.task('fujicons', function() { gulp.src(['fonts/fujicons.css']).pipe(gulp.dest('live/fonts')); gulp.src(['fonts/fujicons.ttf']).pipe(gulp.dest('live/fonts'));