Retrieves all sass files in a Commerce Cloud cartridge
npm install commerce-cloud-sass-helperUnfortunatly by default the sgmf-scripts only support scss files for SASS compilation and not sass files. This helper can be used to retrieve all sass files from the file directory and compile them as well.
```
var sassFiles = require('commerce-cloud-sass-helper').createSassPath();
```
{
entry: {...scssFiles, ...sassFiles},
module: {
rules: [{
test: /\.(sass|scss)$/,
}]
}
}