I've encountered an issue while compiling my bootstrap sass file. The error message I'm receiving is shown below. Although I can make it work by commenting out lines 4 and 8 of _root.scss, that is not the optimal solution. Can someone please explain what is causing this problem? - My Sass version is up-to-date at 3.5.3
Error: Invalid CSS after "...lor}: #{$value}": expected "{", was ";"
on line 4 of /Users/.../bootstrap-4.0.0/scss/_root.scss
...
1: :root {
2: // Custom variable values only support SassScript inside `#{}`.
3: @each $color, $value in $colors {
4: --#{$color}: #{$value};
5: }
6:
7: @each $color, $value in $theme-colors {
8: --#{$color}: #{$value};
9: }