Compass and Susy require a different version of Sass

后端 未结 1 1933
清酒与你
清酒与你 2021-02-10 19:20

I am working on my website and I want to use Susy as well as Compass. I am using Grunt too. When I run my grunt task I get this error:

Denniss-MacBook-Pro:portfo         


        
相关标签:
1条回答
  • 2021-02-10 20:08

    There is the problem with dependencies they are incompatible: susy 2.0.0 depends on sass ~> 3.3.0 compass 0.12.3 depends on sass = 3.2.14

    you can list all you gems by:

    gem list
    

    try to do this:

    gem install compass --pre
    

    This should work.

    0 讨论(0)
提交回复
热议问题