Why does “compass watch” say it cannot load sass/script/node (LoadError)?

后端 未结 11 1618
囚心锁ツ
囚心锁ツ 2020-12-02 11:39

I\'m having a problem with my compass watch command - it worked fine up until a few days ago. I have made no changes to my config files.

I reinstalled Compass, used

11条回答
  •  不思量自难忘°
    2020-12-02 12:43

    I believe this is due to versioning conflicts with sass.

    https://rubygems.org/gems/compass gem is currently at v0.12.16 currently - add this to Gemfile

    gem 'sass', '3.2.19'
    gem 'compass', '0.12.6'
    

    You may be required to uninstall all versions of both gems first.

提交回复
热议问题