jekyll-dash icon indicating copy to clipboard operation
jekyll-dash copied to clipboard

Deprecation Warning for Dart Sass

Open clockworkpc opened this issue 2 months ago • 0 comments

System Details

  • jekyll 4.3.3
  • jekyll-dash (2.4.1)

Describe the bug

Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0.                                                    [38/399]
                                                                                                                                                                             
Recommendation: math.div(20em, 16) or calc(20em / 16)                                                                                                                        
                                                                                                                                                                             
More info and automated migrator: https://sass-lang.com/d/slash-div                                                                                                          
                                                                                                                                                                             
   ╷                                                                                                                                                                         
12 │ $fa-fw-width:          (20em / 16);                                                                                                                                     
   │                         ^^^^^^^^^                                                                                                                                       
   ╵                                                                                                                                                                         
    ../../../../jekyll-dash-2.4.1/_sass/fa/_variables.scss 12:25             @import                                                                                         
    ../../../../jekyll-dash-2.4.1/_sass/fa/fontawesome.scss 5:9              @import                                                                                         
    dash.scss 37:3                                                           @import                                                                                         
    /home/alexanderg/Development/alexander-garber/assets/css/style.scss 1:9  root stylesheet                                                                                 
Deprecation Warning: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0.                                                            
                                                                                                                                                                             
Recommendation: math.div(4em, 3) or calc(4em / 3)                                                                                                                            
                                                                                                                                                                             
More info and automated migrator: https://sass-lang.com/d/slash-div                                                                                                          
                                                                                                                                                                             
  ╷                                                                                                                                                                          
6 │   font-size: (4em / 3);                                                                                                                                                  
  │               ^^^^^^^
  ╵                                        
    ../../../../jekyll-dash-2.4.1/_sass/fa/_larger.scss 6:15                 @import
    ../../../../jekyll-dash-2.4.1/_sass/fa/fontawesome.scss 8:9              @import
    dash.scss 37:3                                                           @import
    /home/alexanderg/Development/alexander-garber/assets/css/style.scss 1:9  root stylesheet

A clear and concise description of what the bug is.

To Reproduce Steps to reproduce the behavior:

  1. Run bundle exec jekyll s
  2. Observe terminal output

clockworkpc avatar Apr 25 '24 09:04 clockworkpc