Closed
Description
Version
3.0.0-rc.3
Reproduction link
buefy/vue-cli-plugin-buefy#8 (comment)
Steps to reproduce
- Create a new project: vue create and choose to install support for SASS.
- Install plugin: vue add buefy and select to add SCSS support.
- The file located at
src/assets/scss/.variables.scss
should be named
src/assets/scss/_variables.scss
What is expected?
Should have a file at the following location:
src/assets/scss/_variables.scss
What is actually happening?
The file is actually named:
src/assets/scss/.variables.scss
We believe the problem comes from
vue-cli/packages/@vue/cli/lib/GeneratorAPI.js
Line 139 in 05391b6
Files starting with an underscore are standard syntax for SCSS partials.