0

now i use Gulp-Ruby-Sass for Gulp.js

But the plugin gulp-ruby-sass slower than gulp-sass. I am very comfortable to typeset through .sass files.

Are there ways to typeset through gulp-sass + .sass files?

P.S. Sorry for my English.

winDeD
  • 1
  • 1
  • Already answered here: http://stackoverflow.com/questions/24397679/indented-sass-syntax-not-working-with-node-sass-and-gulp-sass/25211459#25211459 – jsheffers Apr 22 '15 at 13:38

1 Answers1

0

I found a way, how do it with gulp-sass

gulp.task('sass', function () {
gulp.src('src/sass/index.sass')
    .pipe(sass({indentedSyntax: true}))
    .pipe(gulp.dest('build/css'))
    });
winDeD
  • 1
  • 1