Skip to content

Commit ff57b8f

Browse files
The Jared WilcurtAkryum
The Jared Wilcurt
authored andcommitted
fix: names of Sass and Less (#2384)
* Sass, not SASS * Update cssPreprocessors.spec.js
1 parent cd619e7 commit ff57b8f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/@vue/cli/lib/promptModules/__tests__/cssPreprocessors.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ test('CSS pre-processor ', async () => {
1414
},
1515
{
1616
message: 'Pick a CSS pre-processor',
17-
choices: ['SASS', 'LESS', 'Stylus'],
17+
choices: ['Sass', 'Less', 'Stylus'],
1818
choose: 0
1919
}
2020
]

packages/@vue/cli/lib/promptModules/cssPreprocessors.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = cli => {
22
cli.injectFeature({
33
name: 'CSS Pre-processors',
44
value: 'css-preprocessor',
5-
description: 'Add support for CSS pre-processors like SASS, Less or Stylus',
5+
description: 'Add support for CSS pre-processors like Sass, Less or Stylus',
66
link: 'https://cli.vuejs.org/guide/css.html'
77
})
88

@@ -16,11 +16,11 @@ module.exports = cli => {
1616
description: `${notice}.`,
1717
choices: [
1818
{
19-
name: 'SCSS/SASS',
19+
name: 'Sass/SCSS',
2020
value: 'sass'
2121
},
2222
{
23-
name: 'LESS',
23+
name: 'Less',
2424
value: 'less'
2525
},
2626
{

0 commit comments

Comments
 (0)