我知道警告,由于bourbon不再被积极开发,我应该移至compass或其他一些而不是 compass的css框架。凉。

但是我刚刚从codekit 2更新为codekit 3

我仍然想使用现有/旧项目并编译我的Sass。我希望这是可能的。我敢肯定,自从使用更新进行编译以来,我不是唯一一个看到此错误的人:

Compass: Compiling failed with this error: (null)

我更新到Codekit 3,所有我的Codekit 2项目都消失了。因此,我只是将现有项目拖到了Codekit 3中,似乎已经很好地导入了。没有警告,并且代码包指南针对话框显示指南针已安装...

compiler-errors - 使用现有罗盘项目无法编译sass(s​​css)的Codekit 3更新-LMLPHP

从理论上讲,该项目似乎已经像在Codekit 2中一样导入了。config.rb中的所有设置都相同,并且javascript编译设置也已迁移:-)
config.rb是相同的...
require 'compass/import-once/activate'
# Require any additional compass plugins here.

# Set this to the root of your project when deployed:
http_path = "/"
css_dir = "css"
sass_dir = "scss"
images_dir = "img"
javascripts_dir = "scripts"
fonts_dir = "fonts"

output_style = :nested

# To enable relative paths to assets via compass helper functions. Uncomment:
relative_assets = true

line_comments = false
color_output = false

preferred_syntax = :scss

在我的项目文件夹中有一个名为config.codekit的新config.codekit3文件。甜:-)

compiler-errors - 使用现有罗盘项目无法编译sass(s​​css)的Codekit 3更新-LMLPHP

好的,这对我来说是错的地方,我编译了我的sass screen.scss,然后在代码包3中收到了这个错误 ...
Compass: Compiling failed with this error: (null)

compiler-errors - 使用现有罗盘项目无法编译sass(s​​css)的Codekit 3更新-LMLPHP

我看了一下sass包装器,config.rb,codekit设置,google,我无所适从以解决此错误?由于错误不会告诉我任何事情。

任何人都可以对这个(null)错误有所了解或向我指出正确的方向。

非常感谢 :-)

最佳答案

非常愚蠢,只需将您的框架重新导入代码套件即可。 :-)

关于compiler-errors - 使用现有罗盘项目无法编译sass(s​​css)的Codekit 3更新,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40687466/

10-09 13:53