I finally learnt how to properly setup my gulpfile so the gulp process can handle errors properly, my previous gulp processes always stopped when an error was encountered
This was the code to help handle the errors:
function buildStyles() {
return src('./sass/**/*.sass')
.pipe(sass().on('error', sass.logError)) // handles errors to prevent process stopping
.pipe(dest('dist'));
}
What specific areas of your project would you like help with?
Any areas where you notice anything off/wrong