我克隆了(一个nodejs)Ghost博客平台的存储库 https://github.com/TryGhost/Ghost,并按照说明进行了设置。当我运行grunt
时,我收到此错误
Running "sass:compress" (sass) task
Syntax error: File to import not found or unreadable: bourbon/_bourbon.
Load paths:
/Users/m/Sites/Ghost
/Users/m/Sites/Ghost/core/client/assets/sass
on line 22 of ./core/client/assets/sass/modules/mixins.scss
from line 10 of ./core/client/assets/sass/screen.scss
Use --trace for backtrace.
Warning: Use --force to continue.
Aborted due to warnings.
我发现了一篇博客文章 http://www.bearfruit.org/2013/10/19/quick-tip-for-getting-the-ghost-blogging-platform-running-locally/其中有人遇到了类似的错误,可以通过运行来解决
gem install sass bourbon
但是,这并没有为我解决问题。虽然我可以运行grunt --force
,但 css 存在问题,我猜如果它能找到它正在寻找的文件,就会得到解决。
在mixin中.css错误消息中提到的文件,它具有
// Bourbon - http://bourbon.io/
@import "bourbon/_bourbon";
$rounded: 2px;
$shadow: rgba(0,0,0,0.05) 0 1px 5px;
$default-transition-duration: 0.3s;
但是,幽灵存储库中没有任何类型的波旁威士忌文件夹。我想知道它是否应该从已安装的 gem 导入,如果是这样它不起作用。
你能建议我怎么做来解决这个问题吗?
如果它不存在(无论出于何种原因),我建议手动安装波旁威士忌。如果 gem 成功安装到您的系统,您可以cd
sass 目录并运行 bourbon install
。这应该给你你需要的东西。