altgifted/babel-plugin-transform-scss

SCSS filenames with periods generate incorrect `data-sass-component` attribute

Closed this issue · 0 comments

ururk commented

If you have a file named:

search-page.styles.scss

The sassFilename is set as:

styles

However, it should be:

search-page.styles

A simple fix would be to add a period to the sassFile regex:

sassFile: /([.A-Za-z0-9]+)\.s[ac]ss/g,