-
Notifications
You must be signed in to change notification settings - Fork 12k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(@schematics/angular): stop offering SASS option for ng new #13444
Conversation
The old Sass language referred to as "SASS" here is no longer relevant. This was denoted with the file extension ".sass" Any new projects should use the modern Sass language which is expressed in ".scss" files. This change does not remove any support for projects which were already created with ".sass" files, we simply stop offering this option when creating new projects. Also correct the capitalization of Less based on how they spell it on their website.
Hi all, |
I would also like to know the reason for dropping support to |
I thought there was a bug (ng g c component-name --style=sass no longer works, either, it's producing scss files ) |
I'm about to submit a bug and I found this. Could someone explain the reason why sass support was removed? You can remove a feature in Angular but please at least describe a little bit about the reason. |
This is already added back in about 10 days ago; see the reference to the previous comment. |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
The old Sass language referred to as "SASS" here is no longer relevant. This was denoted with the file extension ".sass"
Any new projects should use the modern Sass language which is expressed in ".scss" files.
This change does not remove any support for projects which were already created with ".sass" files, we simply stop offering
this option when creating new projects.
Also correct the capitalization of Less based on how they spell it on their website.