From ca300acb9bf806d8db8d06165fc395ac1b3efe7a Mon Sep 17 00:00:00 2001 From: Raphael Ochsenbein Date: Wed, 6 Feb 2019 11:52:07 +0100 Subject: [PATCH] fix(@schematics/angular): use correct file extension for SASS (.scss) This pull request changes the referenced extension for the sass language to the correct '.scss' ending. closes #13574 --- packages/schematics/angular/ng-new/schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/schematics/angular/ng-new/schema.json b/packages/schematics/angular/ng-new/schema.json index e8dda08442cc..566cb5a2e9b5 100644 --- a/packages/schematics/angular/ng-new/schema.json +++ b/packages/schematics/angular/ng-new/schema.json @@ -126,7 +126,7 @@ "type": "list", "items": [ { "value": "css", "label": "CSS" }, - { "value": "sass", "label": "Sass [ http://sass-lang.com ]" }, + { "value": "scss", "label": "Sass [ http://sass-lang.com ]" }, { "value": "less", "label": "Less [ http://lesscss.org ]" }, { "value": "styl", "label": "Stylus [ http://stylus-lang.com ]" } ]