gulpfile.js
const gulp = require('gulp');
const sass = require('gulp-sass');
gulp.task('sass', function() {
return gulp
.src('scss/main.scss')
.pipe(sass())
.pipe(gulp.dest('css/'))
});
задание
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "sass",
"type": "gulp",
"task": "sass",
"problemMatcher": [
"$eslint-stylish"
]
}
]
}
gulp версия 4.0.2
глоток CLI версия 2.2.0
gulp-sass версия 4.0.2
Если я попробую на терминале> Gulp Sass, он работает хорошо
Если я попробую Ctrl + Shift + P -> выполнить задачу - получим ошибку:
Error: The gulp task detection didn't contribute a task for the following configuration: