Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS CSS to Sass Installing Sass and Setting up the Project The --watch Command

ZoDo .
ZoDo .
13,135 Points

Unknown folder created in the main-folder

Other than the files indicated in the video that are created inside the CSS folder, my console has created a .sass-cache folder as well, does this means that I have done something wrong? Thank you

2 Answers

andren
andren
28,558 Points

No, that's perfectly normal. Sass caches files by default, and the .sass-cache folder is used for that purpose. The reason why it does not show up in the video is that it is technically a hidden folder. On Unix-like operating systems like Mac OS and Linux, files and folders starting with a dot are hidden by default. Windows however does not use the same system for indicating hidden files and folders and as such will display them.

In other words the folder was generated when sass was used in the video as well, it just wasn't displayed due to the fact that the folder is hidden on Mac OS (formerly OSX) which was used in the video.

ZoDo .
ZoDo .
13,135 Points

Thank`s mate :)