Hacker News new | ask | show | jobs
by psychometry 4479 days ago
What's so bad about having to rename a file?
1 comments

If you're using dependency managers like bower you either have to import the stylesheet in your <head> or use the @include in a sass stylesheet, both will be a new HTTP request. Whereas if you compile it in one file, you save an extra request (now imagine you use multiple dependencies each with their own css file). Renaming a file would defeat the whole point of dependency management.
Just use the link to the CSS file in development an have your build tools concatenate everything for production. Certainly not a show stopper.