I am new to gulp sass so I am currently learning with this https://css-tricks.com/gulp-for-beginners/. The current topic I am working from the above link is #Preprocessing with Gulp
All the stuff is getting fine until I test my sass file after testing it ( to know that it is compiling the CSS ) I trigger that it is not compiling SCSS to CSS why is it so.
Thinks to know.
I am currently not working on my localhost. I have made the project file on my desktop.
I have created the CSS file manually for the first time to see that my SCSS compiles my Current CSS file
What I am doing wrong.
UPDATE :
Inside my Gulp file :
var gulp = require('gulp');
var sass = require('gulp-sass');
gulp.task( 'sass', function() {
return gulp.src('app/scss/**/*.scss')
.pipe(sass())
.pipe(gulp.dest('app/css'));
})
My file structure:
|- app/
|- css/
|- fonts/
|- images/
|- index.html
|- js/
|- scss/
|- style.scss
|- dist/
|- gulpfile.js
|- node_modules/
|- package.json
Note: The file Structure is same as in the CSS Trick.
app/scss/**/*.scssis only going to see files with a.scssextension inside a subfolder.