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