I'm currently attempting to transpile a scss file using gulp-scss. However, when I execute the task, it seems that the imports are not being recognized.
gulpfile.js
gulp.src('./app/css/app.scss', {base: './'})
.pipe(sass({includePaths:'./node_modules/foundation-sites/scss'}))
.pipe(gulp.dest('./web'));
app.scss
/*my custom styles*/
@import 'my-custom-styles';
// Sass utilities
@import 'util/util';
// Global variables and styles
@import 'global';
// Components
@import 'grid/grid';
etc.....
app.css
/*my custom styles*/
body{background:black;}
I was anticipating that app.css would be filled with foundation code. Any suggestions?
Edit: I'm not receiving any errors even after implementing error handling methods. Console
[00:52:07] Using gulpfile ~/dev/rise-client/gulpfile.js
[00:52:07] Starting 'scss'...
[00:52:07] Finished 'scss' after 9.28 ms