webpack-boilerplate icon indicating copy to clipboard operation
webpack-boilerplate copied to clipboard

BUG: `test` for sass accepts "s|ss"

Open tomprogers opened this issue 6 years ago • 0 comments

https://github.com/marharyta/webpack-boilerplate/blob/master/webpack-sass-setup/webpack.config.js#L24

The test regex should be either:

  • /\.s[ca]ss$/ or
  • /\.s(c|a)ss$/

The current regex will return true for "s|ss":

/\.s[c|a]ss$/.test('.s|ss')
//> true

tomprogers avatar Nov 24 '18 04:11 tomprogers