added support for a new sass-files option#857
Conversation
When `sass-files` is set to an array of strings the compiler will only compile files that end with the given name(s) or extensions.
|
Thanks for your pull request. It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please visit https://cla.developers.google.com/ to sign. Once you've signed, please reply here (e.g.
|
|
I signed it! |
|
CLAs look good, thanks! |
|
This is already handled by way of the as an example, using this configuration in the Angular2App options will skip any files prefixed with a |
|
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. |
Projects that have a large number of sass files but only a few that need to be compiled because of
@imports can have a hard time with the CLI because of the automatic compilation included in the current implementation of the sass plugin.This pull request adds the capability to provide a list of 'sass-files' that restrict the compiler to only compile files that end with the given name(s) or extensions. ends-with was the chosen solution so we can support the default configuration of compiling everything that ends with
.scssor.sassIn use this looks like:
addresses Issue 831