Skip to content

Instantly share code, notes, and snippets.

@electblake
Created August 30, 2015 19:41
Show Gist options
  • Select an option

  • Save electblake/3b2513ab274a2a395774 to your computer and use it in GitHub Desktop.

Select an option

Save electblake/3b2513ab274a2a395774 to your computer and use it in GitHub Desktop.
gulp.task('sass', function() {
gulp.src('./public/scss/*.scss')
.pipe(compass({
config_file: 'config.rb',
css: 'public/css',
sass: 'public/scss'
}))
.pipe(gulp.dest('./public/css'))
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment