fix: names of Sass and Less (#2384)

* Sass, not SASS

* Update cssPreprocessors.spec.js
This commit is contained in:
The Jared Wilcurt
2018-08-29 04:25:09 -04:00
committed by Guillaume Chau
parent cd619e70d4
commit ff57b8f55f
2 changed files with 4 additions and 4 deletions
@@ -14,7 +14,7 @@ test('CSS pre-processor ', async () => {
},
{
message: 'Pick a CSS pre-processor',
choices: ['SASS', 'LESS', 'Stylus'],
choices: ['Sass', 'Less', 'Stylus'],
choose: 0
}
]
@@ -2,7 +2,7 @@ module.exports = cli => {
cli.injectFeature({
name: 'CSS Pre-processors',
value: 'css-preprocessor',
description: 'Add support for CSS pre-processors like SASS, Less or Stylus',
description: 'Add support for CSS pre-processors like Sass, Less or Stylus',
link: 'https://cli.vuejs.org/guide/css.html'
})
@@ -16,11 +16,11 @@ module.exports = cli => {
description: `${notice}.`,
choices: [
{
name: 'SCSS/SASS',
name: 'Sass/SCSS',
value: 'sass'
},
{
name: 'LESS',
name: 'Less',
value: 'less'
},
{