Skip to content

Commit

Permalink
gulpfile - fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Sep 8, 2014
1 parent a50b72c commit f8cfdff
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,17 +83,16 @@ gulp.task('fonts', function () {
gulp.task('styles', function () {
// For best performance, don't add Sass partials to `gulp.src`
return gulp.src([
'app/styles/*.scss',
'app/styles/**/*.css',
'app/styles/components/components.scss'
])
'app/styles/*.scss',
'app/styles/**/*.css',
'app/styles/components/components.scss'
])
.pipe($.changed('styles', {extension: '.scss'}))
.pipe($.rubySass({
style: 'expanded',
precision: 10
})
.on('error', console.error.bind(console))
)
style: 'expanded',
precision: 10
}))
.on('error', console.error.bind(console))
.pipe($.autoprefixer({browsers: AUTOPREFIXER_BROWSERS}))
.pipe(gulp.dest('.tmp/styles'))
// Concatenate And Minify Styles
Expand Down

0 comments on commit f8cfdff

Please sign in to comment.