upgrade sass-rails gem to 5.0 gives deprecation warning

前端 未结 3 981
野的像风
野的像风 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:55

    This command helped me renaming lots of .css.sass files:

    find ./app/assets/stylesheets -type f | sed 'p;s/\.css\.scss/.scss/' | xargs -n2 git mv
    

提交回复
热议问题