webpack-boilerplate
webpack-boilerplate copied to clipboard
BUG: `test` for sass accepts "s|ss"
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