Update changelog, Add custom use override

This commit is contained in:
Jeremy Thomas 2020-11-07 18:09:34 +00:00
parent 2eaf38f3d3
commit 0a1ef3c4fb
2 changed files with 11 additions and 0 deletions

View File

@ -16,6 +16,7 @@
### Improvements
* Fix #3012 Add `$media-*` variables, set to `!default`
* Fix #2797 Import dependencies individually for each component
## 0.9.1

View File

@ -23,6 +23,16 @@ exportDartCSS('bulma-rtl', {
file: './bulma-rtl.sass',
});
// Custom import
fs.mkdir(`${DART_BASE_PATH}custom`, { recursive: true }, (err) => {
if (err) throw err;
});
utils.exportCSS(sass, fs, DART_BASE_PATH, 'custom/navbar', {
data: '@use "./sass/components/navbar.sass" with ( $scheme-main: red );',
});
// Single imports
const BULMA_IMPORT_PATH = `./sass/`;