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'));