Skip to content

Commit

Permalink
Fix dependency problems with bootstrap-sass by using newer sass
Browse files Browse the repository at this point in the history
SassError: Invalid CSS after "...point-max: math": expected expression (e.g. 1px, bold), was ".div($grid-float-br"
  from line 12 of app/styles/styles.scss
  >> $grid-float-breakpoint-max: math.div($grid-float-breakpoint - 1) !default;

     --------------------------------^

> This error appears to be due to the use of SassC instead of dart-sass.
> SassC wraps libsass, which does not support the math.div syntax. SassC
> and libsass are deprecated.
>
> I recommend you upgrade your sass compiler to an appropriate version.
>
> -- @AprilArcus, twbs/bootstrap-sass#1224 (comment)
  • Loading branch information
amotl committed Dec 2, 2022
1 parent 679d9fb commit 074e56e
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
41 changes: 41 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Expand Up @@ -39,6 +39,7 @@
"mini-css-extract-plugin": "^1.6",
"node-sass": "^6.0.0",
"null-loader": "^0.1.1",
"sass": "^1.33",
"sass-loader": "^10.2",
"serve-static": "^1.14",
"style-loader": "^0.23",
Expand Down

0 comments on commit 074e56e

Please sign in to comment.