Submitted 9 months agoA solution to the Interactive rating component challenge
Responsive, Accessible Interactive Rating Component Using Typescript
gulp, sass/scss, typescript
@Achigyus

Solution retrospective
What are you most proud of, and what would you do differently next time?
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
Code
Loading...
Please log in to post a comment
Log in with GitHubCommunity feedback
No feedback yet. Be the first to give feedback on Achi Gyuse Achi's solution.
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord