'use strict'; var gulp = require('gulp'), // Подключаем Gulp sass = require('gulp-sass'); //Подключаем Sass пакет gulp.task('sass', function () { return gulp.src('app/sass/**/*.sass') .pipe(sass().on('error', sass.logError)) .pipe(gulp.dest('app/css')); }); When specifying the specific path to the app / sass / main.sass file, everything works fine, app / sass / ** / *. Scss also works.
.sass+ in the options has the parameterindentedSyntax- pepel_xD