Skip to content

Commit

Permalink
fix: names of Sass and Less (vuejs#2384)
Browse files Browse the repository at this point in the history
* Sass, not SASS

* Update cssPreprocessors.spec.js
  • Loading branch information
TheJaredWilcurt authored and Akryum committed Aug 29, 2018
1 parent cd619e7 commit ff57b8f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
]
Expand Down
6 changes: 3 additions & 3 deletions packages/@vue/cli/lib/promptModules/cssPreprocessors.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
})

Expand All @@ -16,11 +16,11 @@ module.exports = cli => {
description: `${notice}.`,
choices: [
{
name: 'SCSS/SASS',
name: 'Sass/SCSS',
value: 'sass'
},
{
name: 'LESS',
name: 'Less',
value: 'less'
},
{
Expand Down

0 comments on commit ff57b8f

Please sign in to comment.