Extends eC Scripts configuration with SCSS support.
⚠ THIS REPO IS DEPRECATED. Please use the multi-package repo at ecentral-scripts. ⚠
This preset enables:
- Support for Sass in
.scss
files - A new option to define a styles folder
// .ecconf.js
module.exports = {
options: {
// Define the directory for your basic .scss files.
// This tells the Sass compiler where to look for imports in the first place.
// (like _variables.scss or _mixins.scss)
stylesDir: 'styles', // Relative to srcDir
},
};
Using eC CLI:
ec-cli init sass
If you want to add this preset to an existing project, please read the eC Scripts installation guide.