upgrade sass-rails gem to 5.0 gives deprecation warning

前端 未结 3 1019
野的像风
野的像风 2021-02-07 07:38

We upgraded to sass-rails version 5.0.0 and are getting this deprecation warning:

DEPRECATION WARNING: Extra .css in SCSS file is unnecessary. Rename /Users/foo/         


        
3条回答
  •  耶瑟儿~
    2021-02-07 07:53

    This handled it for me:

    #!/bin/sh
    for file in $(find ./app/assets/stylesheets/ -name "*.css.scss")
    do
        git mv $file `echo $file | sed s/\.css//`
    done
    

提交回复
热议问题