Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(SASSPlugin): Allow regexes to be passed to include/exclude certa…
…in file patterns Allow passing in cacheInclude and cacheExclude as options to the SASSPlugin, primarily so that filenames beginning with an underscore can be ignored during SASS/SCSS compilation, which is generally accepted to be a standard in SASS (http://sass-lang.com/guide#topic-4). These config values can be set in angular-cli-build.js thus: "sassCompiler": { "cacheExclude": [/\/_[^\/]+$/] } This arguably closes issue #558 (#558)
- Loading branch information