无法在 SASS/Compass 中导入 Susy
Unable to Import Susy in SASS / Compass
我不知道如何将 atom.io 编辑器与 susy 连接起来。
我已经尝试在 "atom susy"、"atom susy sass" 和 google 中搜索类似的内容,但没有找到对我有帮助的任何内容。 (大多数结果都与化学有关,所以我开始写 "atom.io" 而不是 "atom",但仍然没有取得好的结果)
好的...所以我有:
带有软件包的 Atom(编辑器):
- sass-自动编译
- sass-手表
和 npm 与:
- 节点-sass
- 苏西
- 自动加载器
我试过:
@import "/Ruby22/lib/ruby/gems/2.2.0/gems/susy-2.2.12/sass/susy"
但是 susy 不起作用。
@import "C://Ruby22/lib/ruby/gems/2.2.0/gems/susy-2.2.12/sass/susy"
但是susy还是不行
@import "susy"
错误(未找到)
@import "~/susy/sass/susy"
错误(未找到)
@import "~/susy-2.2.12/sass/susy"
错误(未找到)
谁能告诉我如何让它工作?
我缺少配置吗? (如果是:在哪里写这个配置?)
按照以下步骤确认是否安装正确。
安装指南针
gem install compass --pre
安装 Susy
gem install susy --pre
在项目文件夹的根目录中创建config.rb。
# Add the below contents
require "susy"
project_type = :stand_alone
http_path = "/"
# your sass folder
sass_dir = "sass"
css_dir = "css"
images_dir = "img"
fonts_dir = "fonts"
javascripts_dir = "js"
line_comments = false
preferred_syntax = :scss
output_style = :expanded
relative_assets = true
创建main.scss
// Add the below contents
@import "susy";
body {
background: #000;
}
Watch through compass now - "compass watch"
我不知道如何将 atom.io 编辑器与 susy 连接起来。
我已经尝试在 "atom susy"、"atom susy sass" 和 google 中搜索类似的内容,但没有找到对我有帮助的任何内容。 (大多数结果都与化学有关,所以我开始写 "atom.io" 而不是 "atom",但仍然没有取得好的结果)
好的...所以我有: 带有软件包的 Atom(编辑器):
- sass-自动编译
- sass-手表
和 npm 与:
- 节点-sass
- 苏西
- 自动加载器
我试过:
@import "/Ruby22/lib/ruby/gems/2.2.0/gems/susy-2.2.12/sass/susy"
但是 susy 不起作用。
@import "C://Ruby22/lib/ruby/gems/2.2.0/gems/susy-2.2.12/sass/susy"
但是susy还是不行
@import "susy"
错误(未找到)
@import "~/susy/sass/susy"
错误(未找到)
@import "~/susy-2.2.12/sass/susy"
错误(未找到)
谁能告诉我如何让它工作?
我缺少配置吗? (如果是:在哪里写这个配置?)
按照以下步骤确认是否安装正确。
安装指南针
gem install compass --pre
安装 Susy
gem install susy --pre
在项目文件夹的根目录中创建config.rb。
# Add the below contents
require "susy"
project_type = :stand_alone
http_path = "/"
# your sass folder
sass_dir = "sass"
css_dir = "css"
images_dir = "img"
fonts_dir = "fonts"
javascripts_dir = "js"
line_comments = false
preferred_syntax = :scss
output_style = :expanded
relative_assets = true
创建main.scss
// Add the below contents
@import "susy";
body {
background: #000;
}
Watch through compass now - "compass watch"