Browse Source

Fixed whitespace

Cameron Kline 7 years ago
parent
commit
ab15aff17d
1 changed files with 7 additions and 7 deletions
  1. 7 7
      gulpfile.js

+ 7 - 7
gulpfile.js

@@ -5,18 +5,18 @@ const sass = require('gulp-sass');
 const nodemon = require('gulp-nodemon');
 
 gulp.task('sass', () => {
-  return gulp.src('./src/sass/**/*.scss')
-    .pipe(sass({outputStyle: 'compressed'}).on('error', sass.logError))
-    .pipe(gulp.dest('./public/css'));
+	return gulp.src('./src/sass/**/*.scss')
+		.pipe(sass({outputStyle: 'compressed'}).on('error', sass.logError))
+		.pipe(gulp.dest('./public/css'));
 });
 
 gulp.task('start', () => {
-  nodemon({
-    script: 'src/app.js',
+	nodemon({
+		script: 'src/app.js',
 		ext: 'js'
-  });
+	});
 });
 
 gulp.task('default', ['start'], () => {
-  gulp.watch('./src/sass/**/*.scss', ['sass']);
+	gulp.watch('./src/sass/**/*.scss', ['sass']);
 });